Hello all!
I am currently developing on the development board nRF52832, SDK16.0 and SD132v7.2.0.
As mentioned in the subject the virtual pages are overwritten by the application. Due to this, the function "pages_init()" returns an error which leads to FDS_ERR_NO_PAGES error. I checked the hex-dump and it seems that the application overlaps the memory regions 0x6C000 - 0x6E000. These pages are foreseen for the virtual pages since in sdk_config.h following is set:
#ifndef FDS_VIRTUAL_PAGES #define FDS_VIRTUAL_PAGES 4 #endif
The point is that in debug the hex-file is 100k bigger than the release hex. I figured out that for release version in the tab Code generation the Optimization Level is set to "Optimize For Size". If a copy the same settings for debug version it is not possible to debug the application.
So my question is, is it possible to shring somehow the debug version applying some optimization?
Thanks in advance.
Rgerads,
MKarl