Hi,
I have an old project running on nRF51822, with SoftDevice SDK v8 - S110 mode. I'm trying to migrate the project to a nRF52832 with SoftDevice SDV v12 - S132 v3 mode.
I'm working with Segger Embedded Studio v3.10e
The device is a peripheral who runs some custom BLE services to transfer data.
I'm trying to code once again all my services using the ble_app_template included in the SDK.
I imported my former services, all is fine.
I swapped device_manager for peer_manager. Unfortunately, during pm_init(), I got an error. More precisely, it happens in pds_init() in peer_data_storage.c, when calling fds_init() I got a NRF_ERROR_NO_MEM error.
I commented the block with pm_init(). Now, my project is running, and the device is advertising.
Here is the corresponding screenshot from LightBlue.
So... I can connect to my device and services appeared in the advertised data ; but I can not see them in details (see the characteristics, read/write them). Of course, with the nRF51822 version, everything works.
Do you know how to solve this? Does the problem come from the fact I can not initialize peer manager? Or is it something with the custom services (something to migrate?)? Maybe something else?