JFlash to read nRF52832 serial number

Hello,

I am developing a solution based on nrf52-DK, using nRF52832.

I am trying to use JFlash to read Device Serial Number.

I could read it with JLink , with command "mem32 0x10000060 2"
I could read it with nrfjprog , with command "nrfjprog --memrd 0x10000060 --n 8"

But I cannot get it with JFlash, I tried "JFlash.exe -openprj nrf52_dk.jflash -readrange 0x10000060 8 -exit"
but nothing is read actually, message shows 0 bytes are actually read : "Target memory read successfully. (0 bytes, 0 ranges) - Completed after 0.185 sec"

Do you have any suggestion on how to read serial number with JFlash  ?

Thanks

Parents Reply
  • Yes if I read a flash memory range with :
    JFlash.exe -openprj nrf52_dk.jflash -jflashlogC:\tmp\jflash.log -readrange 0x0000060,0x0000067 -exit
    that works and I get this log and the data is read: 

    - Target memory read successfully. (8 bytes, 1 range) - Completed after 0.349 sec
    J-Flash V8.10a: Target memory read successfully. (8 bytes, 1 range) - Completed after 0.349 sec

Children
Related