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

FDS change flash size using DFU

NRF52832

SDK is 14

System has bootloader, softdevice s132 5.0.0 and app.

App uses FDS, FDS config:

#ifndef FDS_ENABLED
#define FDS_ENABLED 1
#endif
#ifndef FDS_VIRTUAL_PAGES
#define FDS_VIRTUAL_PAGES 25
#endif
#ifndef FDS_VIRTUAL_PAGE_SIZE
#define FDS_VIRTUAL_PAGE_SIZE 1024
#endif
#ifndef FDS_BACKEND
#define FDS_BACKEND 2
#endif
#ifndef FDS_OP_QUEUE_SIZE
#define FDS_OP_QUEUE_SIZE 4
#endif
#ifndef FDS_CRC_CHECK_ON_READ
#define FDS_CRC_CHECK_ON_READ 0
#endif
#ifndef FDS_CRC_CHECK_ON_WRITE
#define FDS_CRC_CHECK_ON_WRITE 0
#endif
#ifndef FDS_MAX_USERS
#define FDS_MAX_USERS 4
#endif
Everything works perfectly but now there is need to have bigger FDS size, around 24kb. And I can only update app using DFU.
How can I do it?
Related