01-22-2026, 09:33 PM
@scomico,
Saving data: you need a buffer of 256 bytes (u8) where the 4 first bytes are reserved for a "magic number".
This number is just a way to know if something has already been saved.
So you have 252 bytes for your own data starting at index 4.
You can then transfert the content of this buffer to your own data structure.
Saving data: you need a buffer of 256 bytes (u8) where the 4 first bytes are reserved for a "magic number".
This number is just a way to know if something has already been saved.
So you have 252 bytes for your own data starting at index 4.
You can then transfert the content of this buffer to your own data structure.

