I've migrated over my application code. I've noted that SDK10's new modules causes much high RAM consumption than on SDK 6.1. Everything is working however, except for the Flash Settings Module. My code crashes upon trying to load values from Flash. The debugger simply loses track, and app_error_handler() doesn't catch anything.
I noted that my cb_function seems to be called properly receiving the correct PSTORAGE_LOAD_OP_CODE. However I also noted that the sys_evt_dispatch() not called at all. So I not receiving System Events. I properly register for them using:
// Register with the SoftDevice handler module for BLE events.
err_code = softdevice_sys_evt_handler_set(sys_evt_dispatch);
APP_ERROR_CHECK(err_code);
So I'm struggling to figure out why this isn't working, as according to the documentation this hasn't changed much since SDK 6.1. Thanks in advanced for the help guys.
-DC