Hello everyone,
I use sdk14.2 softdevice S132. I want to write "uint8_t some_array [7] = {0x00,0x01,0x02,0x03,0x04,0x05,0x06};" with use fds_write and read the array from the memory location and store the array into another array. Prosses like this;
1- Write the array "uint8_t some_array [7] = {0x00,0x01,0x02,0x03,0x04,0x05,0x06};" to memory via FDS
2- Read the array from address location (fds_read)
3- Store the read array into another array (for example second_array(7)).
4- Finally, to be sure, we should read this sequence in this way;
NRF_LOG_HEXDUMP_INFO(second_array,7);
and result have to be;
0> <info> app: 00 01 02 03 04 05 06 |.......
I read some document and examine some example, but I did not see how to write a sequence with multiple elements into flash memory.
Do you have any suggestion?