This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

NRF 52832 Chip ID or unique serial number?

Hello,

I need to read the unique serial number from a nordic NRF 52832 device. This number is necessary for our production testing.

I have the latest SDK.

Thanks!

Parents Reply
  • you should be able to write some simple code to read the values of these registers

    Indeed; eg,

        NRF_LOG_INFO("SAADC Low Power Example; built on " __DATE__ " at " __TIME__ " for " BOARD_STR );	
        NRF_LOG_INFO("DevAddr %08X %08X", NRF_FICR->DEVICEADDR[1], NRF_FICR->DEVICEADDR[0] );	
    

    I always do that in development so that, when looking back through old recorded logs, I can tell what software was used, and what it was running on.

Children
No Data
Related