Hi,
from the manual refer on UM-WI-056, on section Appendix C SDK Memory Maps, on page: 96 I have notice that serial flash memory (SFLASH) can be used both for code execution and for storing application data. Since I have to store confidential information in the external memory, I want to ensure that it is protected from unauthorised access and attacks.
1.How can I protect the external flash memory from unauthorized read/write access?
2.Are there hardware-level protections (e.g., secure boot, memory access control) to prevent firmware extraction or modification?
I have seen that there is a command "sflash write 3AD000 10" to write in sflah memory. The data that I have tried to written come from predefined values or memory buffers in the firmware.
[MROM] sflash write 3AD000 10[MROM] sflash read 3AD000 10[003AD000] : 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
3. Is there any way to be able to write the data that I want?