maniacbug / RF24

Arduino driver for nRF24L01
http://maniacbug.github.com/RF24
956 stars 772 forks source link

SETUP_AW reset #65

Open koverg70 opened 9 years ago

koverg70 commented 9 years ago

Hi!

I started to use an nrf24 enabled boot loader. After that your RF24 library stopped working. That's because the boot loader uses 3 byte addresses, and RF24 wants to use 5, but leaves the SETUP_AW on the previous.

The solution is to initialize that register: // 5 byte addresses write_register(SETUP_AW, 0x03);

Regards,

Gábor