hai
i want to store a struct contains two elements . can i store it in flash using pstorage....? if so how can i do that.........?
or
can i store a two dimensional array instead of a one dimensional array...........?
thank you
hai
i want to store a struct contains two elements . can i store it in flash using pstorage....? if so how can i do that.........?
or
can i store a two dimensional array instead of a one dimensional array...........?
thank you
of course you can store a struct, you just give it the pointer to the struct and the length.
thank you let me try
can you give me a simple program with struct store and load...?
You should be able to do something like:
err_code = pstorage_store(&block_handle, (uint8_t*)&mystruct, sizeof(mystruct_t), 0);
APP_ERROR_CHECK(err_code);
err_code = pstorage_load((uint8_t*)&mystruct, &block_handle, sizeof(mystruct_t), 0);
APP_ERROR_CHECK(err_code);
@Petter Myhre thank you . your replays are so helpful for me.