I have created a library for Arduino to enable NRF52840 <-> NRF24L01+ communication and have most of the functionality working, except for static payloads. Essentially, I've created a library that mimics the ESB protocol from NRF24L01+ on NRF52 devices.
I found that when using Static Payloads on the NRF24L01+, when transmitting from NRF52, I have to disable CRC checking in order to correctly receive the ACK packet, else I get a CRC error that I can't explain, because the ACK comes from a working nrf24L01+ module.
The other way around, transmitting from NRF24, I receive the initial packet, but am unable to get an ACK packet back to the transmitting device from the NRF52.
I am wondering:
A: Is disabling CRC checking before receiving an ACK while using static payloads correct behaviour? I don't see why CRC checking would be necessary on static ACK packet.
B: How to get receiving working? There has to be something I'm missing, but what? I've tried disabling CRC before sending the ACK, but no luck there.
Everything works well with Dynamic Payloads enabled btw.
I've been stuck on this issue for months, and only recently made some headway in being able to transmit from the NRF52.
https://github.com/TMRh20/nrf_to_nrf is the source code.
I've also opened an issue to track the problem: