Hello all,
Two same same nRF52820 modules are connected to two usb ports and they are easily flashed via Segger, namely selected via two JLink emulator numbers.
Two separate which on is which , the printout of the DEVICE ID is added, however, the number is equal in both cases, although these are two physically different chips :)
// finding the nRF52820 device- ID
void my_device_ID(void) {
m_device_id = NRF_FICR->DEVICEID[0]; /* Assign Device ID from FICR to m_device_id variable */
}
// print my Device ID
printf("\n my_device_ID: %d\n", my_device_ID);
my_device_ID();
Any idea how to get the "unique device ID" from the nrf52820 ?
Best.