Closed rbasoalto closed 10 years ago
I'm porting your driver to mspgcc and notice these two bugs, currently in lines 83 and 100 of msprf24.c:
for (i=rf_addr_width-1; i>=0; i--) {
The condition will always be true, since i is uint16_t.
i
uint16_t
See Pull Request #11
Fixed this and many others in my latest update. Seems I never quite tested the last major change to the codebase...
I'm porting your driver to mspgcc and notice these two bugs, currently in lines 83 and 100 of msprf24.c:
The condition will always be true, since
i
isuint16_t
.