We are using nRF52840 with sdk 15.0 version & segger embedded studio. We are able to store some small amount of configuration data into flash using FDS. But now we want to store large data array near about 73Kbytes into flash. I am writing example code for storing this data and created one dummy array of size 73728 bytes. But I getting following ERROR:
FDS_ERR_RECORD_TOO_LARGE
I am confused for configuration of FDS for storing 73Kbytes
Here is bellow edited in sdk_config.h
FDS_VIRTUAL_PAGES 10
FDS_VIRTUAL_PAGE_SIZE 2048
FDS_OP_QUEUE_SIZE 4
Will you please help me how i use this above configuration for storing 73KB data. & how i fixed FDS_ERR_RECORD_TOO_LARGE ERROR?
Is it possible to store this data in one fds_record_write (...) call request?
Thanks in advanced..!!