Common Issues

Settings that must match

Before you report undesirable behavior, please make sure that the following RF24 configurations match on both receiving and transmitting nRF24L01 transceivers:

  1. setAddressLength()

  2. setChannel()

  3. setDataRate()

  4. setAutoAck()

  5. setDynamicPayloads()

  6. enableAckPayload() or disableAckPayload() (requires auto-ack and dynamic payloads features)

  7. setPayloadLength() (only if the dynamic payloads feature is disabled – it is disabled by default)

  8. setCrc() (the auto-ack feature automatically enables CRC because it is required)

Also, it helps to think of an address as a path (a commonly shared route) instead of an identifying device destination. This means that addresses have to match for a payload to travel from one transceiver to another. However, the pipe numbers assigned with the matching address do not have to match. You can think of pipes as parking spots for the packets, while all packets’ payloads live in a TX or RX FIFO buffer. Remember that the TX FIFO buffers and the RX FIFO buffers both have a maximum occupancy of 3 payloads (regardless of the maximum 32-byte payload size).

The most common issues and their solutions

send() always returns true after setAutoAck(false)

Don’t disabled the auto-ack feature. send() has no reason to doubt that the payload was delivered if the auto-ack feature is disabled. We recommend you read the docs about setAutoAck() before disabling the auto-ack feature.

send() returns false when the payload was received

If the settings match on both endpoint transceivers, then this can only mean that the receiving nRF24L01 failed to send an acknowledgement (ACK) packet back to the transmitting nRF24L01. Usually this is due to instability (electric noise) in the power lines (VCC and GND) going to the receiving nRF24L01.

If you’re not receiving ACK packets correctly/reliably on data rates lower than 2MBPS, try adding a big capacitor close to the module/chip. Example issues: #264 #211.

For reliability, please use Electrolytic or Tantalum capacitors. Ceramic capacitors may not be good enough (depending on the manufacturing source).

my PA/LNA module fails to transmit

You may find variants of the nRF24L01 transceiver that are marketed as “nRF24L01+PA+LNA”. These modules are distinct in the fact that they come with a detachable (SMA-type) antenna. They employ seperate RFX24C01 IC with the antenna for enhanced Power Amplification (PA) and Low Noise Amplification (LNA) features. While they boast greater range with the same functionality, they are subject to a couple lesser known (and lesser advertised) drawbacks:

  1. Stronger power source. Below is a chart of advertised current requirements that many MCU boards’ 3V regulators may not be able to provide (after supplying power to internal components).

    Specification | Value

    Emission mode current(peak)

    115 mA

    Receive Mode current(peak)

    45 mA

    Power-down mode current

    4.2 µA

  2. Needs shielding from electromagnetic interference. Shielding usually works best when it has a path to ground (GND pin), but this connection to the GND pin is not required. It is important that the sheilding does not touch any current carrying parts.

    • Professionals tend to use a faraday cage/mesh to implement electromagnetic shielding, but it can be pricey for this scenario.

    • A quick do-it-yourself solution (as proof-of-concept) would be to wrap the PA/LNA module with electrical tape and then wrap foil around the electrical tape (for shielding) while being very careful to not let the foil touch any current carrying parts (like the GPIO pins, the antenna mount, and the soldier joints for the antenna mount).

      See

      ghetto_shielding_1.png

      and

      ghetto_shielding_2.png