[SOLVED] Network adres (MY_RF24_BASE_RADIO_ID) not loaded to NRF
-
When using Arduino IDE and
#define MY_RF24_BASE_RADIO_ID ((uint64_t)0xA8A8E1FC00LL)adres transfered to NRF is 0x0000000000
this gives high to full rate of ack - lost (st=fail)simple solution is to change definition
#define MY_RF24_BASE_RADIO_ID 0x00,0xFC,0xE1,0xA8,0xA8 -
When using Arduino IDE and
#define MY_RF24_BASE_RADIO_ID ((uint64_t)0xA8A8E1FC00LL)adres transfered to NRF is 0x0000000000
this gives high to full rate of ack - lost (st=fail)simple solution is to change definition
#define MY_RF24_BASE_RADIO_ID 0x00,0xFC,0xE1,0xA8,0xA8@olo_25 In the transition of MySensors 1.5 to 2.0.0 the radio ID name changed from BASE_RADIO_ID to MY_RF24_BASE_RADIO_ID.
in 1.5 it was defined as an uint64_t, in 2.0.0 it is an array of bytes.
Perhaps you forgot to convert this when transitioning to 2.0.0?