hello there i have three nrf51 dk. now in beacon code can we do like, when i upload same code to all three nrf51 dk, three will have different major, minor number. can anyone tell me how to do it??
hello there i have three nrf51 dk. now in beacon code can we do like, when i upload same code to all three nrf51 dk, three will have different major, minor number. can anyone tell me how to do it??
i am using nrf51 sdk. (1) i don't want APP_MAJOR_VALUE and APP_MINOR_VALUE as constant (2) i tried using defining the USE_UICR_FOR_MAJ_MIN_VALUES constant but in this method everytime i have to set major and minor using command window. so it is not use ful for me. (3) any other method available for 100 beacons?? different major minor number for 100 beacons using same firmware
Sorry, I think I misunderstood
To realize how to write the major and minor values from device address, look at the code snippet given on this thread. Perhaps you need to browse the beacon kit firmware 1.1.1 a little to fully realize what code is needed.
i can't find code there
beacon_data[BEACON_MANUF_DAT_MINOR_L_IDX] = (uint8_t)(NRF_FICR->DEVICEADDR[0] & 0xFFUL);
beacon_data[BEACON_MANUF_DAT_MINOR_H_IDX] = (uint8_t)((NRF_FICR->DEVICEADDR[0] >> 8) & 0xFFUL);
beacon_data[BEACON_MANUF_DAT_MAJOR_L_IDX] = (uint8_t)((NRF_FICR->DEVICEADDR[0] >> 16) & 0xFFUL);
beacon_data[BEACON_MANUF_DAT_MAJOR_H_IDX] = (uint8_t)((NRF_FICR->DEVICEADDR[0] >> 24) & 0xFFUL);
ok from where you write??