Hello,
I need to reset FDS. How can I get it's address / size in code ? How to erase it's area ?
Thank you.
Hello,
I need to reset FDS. How can I get it's address / size in code ? How to erase it's area ?
Thank you.
Is that possible to erase a FDS area with a DFU update (a hex file full of FF with addresses that correspond to FDS) ?
I found for address in fds.c, see function flash_bounds_set();
There is a bug in fds.c / address_is_valid:
"p_addr <= (uint32_t*)m_fs.end_addr" should be "p_addr < (uint32_t*)m_fs.end_addr" because end_addr is excluded.
What can i use to erase pages ?
if i use nrf_fstorage_erase, i get a fatal error. What can i do next please ?
Error printed fatal error on RTT output (in event management)
I finally found a way to create my "FDS" format that works nice. Thank you for your help.