Hi,all.i store my password into uicr used JLink,then i want to read it used ble interface and return it to APP.How to do that?Thanks a lot!
Hi,all.i store my password into uicr used JLink,then i want to read it used ble interface and return it to APP.How to do that?Thanks a lot!
You do not need any special API to read data from FLASH, just use memcpy function. Special handling is only needed when writing to Flash while Ble activity.
memcpy(p_dest, (uint8_t *)0x10001084, size); make sure that your destination is in RAM
memcpy(p_dest, (uint8_t *)0x10001084, size); make sure that your destination is in RAM