Beware that this post is related to an SDK in maintenance mode
More Info: Consider nRF Connect SDK for new designs

Receiving Access Address for nRF52840 Radio

Hi,

i have nRF52840 DK.

I am working on radio test code based radio_test example code with nRF5_SDK_17.0.2_d674dde version.

If the transmitter is configured as :   (BLEN = 4, BIG_ENDIAN)

    NRF_RADIO->TXADDRESS   = 0x00UL; 
   
    nrf_radio_prefix0_set(0xAB);
    nrf_radio_base0_set(0xABABABAB);

The receiver: (BLEN = 4, BIG_ENDIAN) 

      NRF_RADIO->RXADDRESSES = 0x01UL;  

      nrf_radio_prefix0_set(0xAB);
      nrf_radio_base0_set(0xABABABAB);

It receives packets.

But If base0 on both Tx/Rx is changed into :

    nrf_radio_base0_set(0x6372E1BEU); 

Then no packets are received.

Is this because the base0 address is BAD / INVALID, or is this caused by something else? 

Thank you,

David Zhou

Parents Reply Children
No Data
Related