I'm sending Data from nRF51822 to nRF24L01.
The configuration of the nRF51822 is
NRF_RADIO->PREFIX0 = 0x43434343UL;
NRF_RADIO->BASE0 = 0x43434343UL;
The address of the 24L01 is 0x2C2C2C2C2C
This is working perfect.
Now I need to replace the 24L01 by the nRF52840
How to adjust the Address of the nRF5280
uint8_t base_addr_0[4] = {0x2C, 0x2C, 0x2C, 0x2C};
uint8_t base_addr_1[4] = {0x2C, 0x2C, 0x2C, 0x2C};
uint8_t addr_prefix[8] = {0x2C, 0x2C, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8 };
is not working.
( but maybe there is a problem in my software somewhere else ...)