good day all.
please forgive me if i used the wrong topic, but i am unsure what to use as i am unsure of the problem i am facing.
i have 2* NRF24L01+ Pa LNA modules, with antenna, and i am trying to get it to work. i have scoured lot of places, including the forum and i have failed getting it to work.
when i connect them directly to my arduino uno R3 boards and try the examples of Robert2 i only get the following in the serial monitor:
from transmitter: TX Failed
from receiver: Data received.
i have tried other uno R3 and other NRF24L01+ modules. still no luck.
i have also tried using AMS1117 modules and even chips, i have also tried LM2596 modules and am still getting the same response.
if there is anyone who can help me to figure out what to try next i would appreciate it tremendously.
Also, it appears that you have used this tutorial: Simple nRF24L01+ 2.4GHz transceiver demo by @Robin2 you'll see in post #30 that there is sketch to dump debug output to the serial console. Maybe try that and post the results here for both modules.
Note that that tutorial contains a misleading diagram which could result in users, who are using an external power supply, failing to provide a common ground between the Arduino and the NRF24L01 module.
The first thing to say is that you have not included all the output which the tests have generated.
Here is a complete example starting with the phrase "CheckConnection Starting":
20:18:01.573 -> CheckConnection Starting
20:18:01.573 ->
20:18:01.573 -> FIRST WITH THE DEFAULT ADDRESSES after power on
20:18:01.665 -> Note that RF24 does NOT reset when Arduino resets - only when power is removed
20:18:01.711 -> If the numbers are mostly 0x00 or 0xff it means that the Arduino is not
20:18:01.804 -> communicating with the nRF24
20:18:01.849 ->
20:18:01.849 -> STATUS = 0x0e RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=7 TX_FULL=0
20:18:01.942 -> RX_ADDR_P0-1 = 0xe7e7e7e7e7 0x4141417852
20:18:01.942 -> RX_ADDR_P2-5 = 0xc3 0xc4 0xc5 0xc6
20:18:01.988 -> TX_ADDR = 0xe7e7e7e7e7
20:18:02.034 -> RX_PW_P0-6 = 0x00 0x20 0x00 0x00 0x00 0x00
20:18:02.080 -> EN_AA = 0x3f
20:18:02.080 -> EN_RXADDR = 0x02
20:18:02.126 -> RF_CH = 0x4c
20:18:02.126 -> RF_SETUP = 0x07
20:18:02.172 -> CONFIG = 0x0e
20:18:02.172 -> DYNPD/FEATURE = 0x00 0x00
20:18:02.172 -> Data Rate = 1MBPS
20:18:02.218 -> Model = nRF24L01+
20:18:02.218 -> CRC Length = 16 bits
20:18:02.264 -> PA Power = PA_MAX
20:18:02.310 ->
20:18:02.310 ->
20:18:02.310 -> AND NOW WITH ADDRESS AAAxR 0x41 41 41 78 52 ON P1
20:18:02.356 -> and 250KBPS data rate
20:18:02.356 ->
20:18:02.356 -> STATUS = 0x0e RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=7 TX_FULL=0
20:18:02.403 -> RX_ADDR_P0-1 = 0xe7e7e7e7e7 0x4141417852
20:18:02.494 -> RX_ADDR_P2-5 = 0xc3 0xc4 0xc5 0xc6
20:18:02.540 -> TX_ADDR = 0xe7e7e7e7e7
20:18:02.540 -> RX_PW_P0-6 = 0x00 0x20 0x00 0x00 0x00 0x00
20:18:02.587 -> EN_AA = 0x3f
20:18:02.633 -> EN_RXADDR = 0x02
20:18:02.633 -> RF_CH = 0x4c
20:18:02.633 -> RF_SETUP = 0x27
20:18:02.633 -> CONFIG = 0x0e
20:18:02.679 -> DYNPD/FEATURE = 0x00 0x00
20:18:02.726 -> Data Rate = 250KBPS
20:18:02.726 -> Model = nRF24L01+
20:18:02.772 -> CRC Length = 16 bits
20:18:02.772 -> PA Power = PA_MAX
20:18:02.772 ->
20:18:02.772 ->
Most of your last two debug sessions looks odd, with many fields set to either 0x0000 or 0xFFFFFF, but this in particular is odd where the CRC length is disabled.
The one in post #4 looks good so far but, like all, is incomplete.
It does appear that the ones in posts #5 and #6, where you appear to have made changes to the power provision indicate a problem.
I think the first thing to do is to repeat the results and supply the complete output from the debug session, again indicating how the power was configured for each test.