That means you'd be erasing and writing to the 4K block 16 times. That puts unnecessary wear on the FLASH.
This is managed by saving the state of each of the 256 byte section, erasing the whole 4k block, and then restoring the data into Flash.
But then RAM is precious on Pico, with only 256k, so buffering 4K for a single erase/write cycle could use valuable RAM.
Perhaps a variable to allow user to select how big the block buffe/transfer is? Like 256/512/1024/2048/4096? Could be a single byte as the switch: 0 = 256, 1 = 512, 2 = 1024, 3 = 2048, 4 = 4096.
I'm also curious how that might support non-volatile EEPROM/FS blocks. But then I'm not sure if native SDK even supports non-volatile data between firmware updates.
Statistics: Posted by DanMan32 — Mon Jan 15, 2024 2:06 am