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??
Hi rushin
If you are using ble_app_beacon application in the nRF5 SDK, then major and minor values should be advertised as set by the APP_MAJOR_VALUE and APP_MINOR_VALUE constants in the main file. You can however make the application generate the major and minor values by defining the USE_UICR_FOR_MAJ_MIN_VALUES constant.
If you are using the beacon kit firmware 1.1.1, which flashes together with S110 7.1.0/7.3.0, then this thread contains some information on how to set the major and minor values in the advertising packet
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);
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);