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);
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