Hello all,
I'm building a project on the nRF52382 with the S132 (v2.0.0-4.alpha). The project includes a Central device (GATT Clients) that read and write to 2 peripheral devices. I used the ble_app_hrs_c_pca10040 projects (SDK 11.0.0-2.alpha_bc3f6a0) as a template.
The problem I have at the moment is that with two (GATT client) services, although the project builds successfully, the application does not work properly when the chip is programmed. Initially, I tried the application with just one of both services, and the application works properly.
Debugging the initialisation process pointed to the following softdevice API .
err_code = sd_ble_uuid_vs_add(&base_uuid, &m_base_uuid_type);
Both services I have implemented have vendor specific UUIDs. It seems in whichever order the services are initialised, the first initialisation works (NRF_SUCCESS) but the second initialisation always stops at the base UUID add with a NRF_ERROR_NO_MEM (0x04), and causes a system reset.
I noticed this question was posted earlier considering it was a bug, but no answer was provided. devzone.nordicsemi.com/.../
Can anyone help with this problem?