You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
While reading the docs about embassy_rp::block, I understand how to create a partition table block, but I don’t find how to write and read this partition table to flash memory.
Any tip ?
It would be great to add an example to complete the docs :)
David.
The text was updated successfully, but these errors were encountered:
I think the answer is #[repr(C)] of struct Block.
In rp23 samples, we can see #[link_section = ".start_block"] related to memory.x file.
We can create partition tables and flash them thanks to picotool, but if we need our application to serialize a new partition table, we have to do it ourself. Hopefully, #[repr(C)] should help.
Hello,
While reading the docs about embassy_rp::block, I understand how to create a partition table block, but I don’t find how to write and read this partition table to flash memory.
Any tip ?
It would be great to add an example to complete the docs :)
David.
The text was updated successfully, but these errors were encountered: