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

SDK15 HID service_error_handler NRF_ERROR_NO_MEM

I am working in sdk15 nrf52832 ble_app_hids_keyboard.

I want merge ble_app_uart_c ,so modify in 

sdk_config.h :

NRF_SDH_BLE_CENTRAL_LINK_COUNT 1

PM_CENTRAL_ENABLED 1

But bonding with Iphone

Debug massege :

16:12:49.746> <error> app: ERROR 4 [NRF_ERROR_NO_MEM] at ..\..\..\main.c:502
16:12:49.746> PC at: 0x00034503

static void service_error_handler(uint32_t nrf_error)
{
APP_ERROR_HANDLER(nrf_error);
}

nrf_error is 0x00000004(NRF_ERROR_NO_MEM)

I don't know where no memery .

Related