This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

alternative for chunk in FDS module in sdk15

Hi to all,

i have a project that was based on SDK 13 and in that version i had ability to call fds_record_write with multiple data chunk, but in softdevice 14 and sdk15 this feature is removed and this is an incompatibilite with previous version. there is any alternative for write a record in flash that data of it is distributed in the RAM ??

thanks

Parents
  • Hi,

    You are correct, that functionality has been removed. The reasoning is that it adds unnecessary complexity (and code size) to the FDS library, for a feature that is seldom used, and for which you can easily implement the necessary functionality in the application itself when needed.

    If you need to collect data from multiple locations and store them as one record, then you now have to collect it into a contiguous buffer area yourself before you use fds_record_write() to write the data.

    Regards,
    Terje

Reply
  • Hi,

    You are correct, that functionality has been removed. The reasoning is that it adds unnecessary complexity (and code size) to the FDS library, for a feature that is seldom used, and for which you can easily implement the necessary functionality in the application itself when needed.

    If you need to collect data from multiple locations and store them as one record, then you now have to collect it into a contiguous buffer area yourself before you use fds_record_write() to write the data.

    Regards,
    Terje

Children
No Data
Related