Skip to content
Snippets Groups Projects
Commit 63e99eb9 authored by Cenk Gündoğan's avatar Cenk Gündoğan
Browse files

tests/driver_nrf24l01p_lowlevel: add note about compatilibity

parent 36297969
No related branches found
No related tags found
No related merge requests found
...@@ -107,3 +107,12 @@ nrf24l01p_rx_handler got a message: Received packet. ...@@ -107,3 +107,12 @@ nrf24l01p_rx_handler got a message: Received packet.
32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
``` ```
## Compatibility with SI24R1 or other NRF24l01p clones
CRC and Auto-ACK should be disabled.
Use
```
nrf24l01p_disable_all_auto_ack(&nrf24l01p_0);
nrf24l01p_disable_crc(&nrf24l01p_0);
```
after `nrf24l01p_init(&nrf24l01p_0, SPI_PORT, CE_PIN, CS_PIN, IRQ_PIN) < 0)`
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment