Hello,
I'm using 2 sparkfun nrf52840 boards. On the central board I'm using ble_app_multilink_central (trying to integrate ble_app_uart_c example) and on the peripheral: ble_app_uart.
When connected, in ble_evt_handler, at BLE_GAP_EVT_CONNECTED, I get a reset because of the function:
APP_ERROR_CHECK_BOOL(p_gap_evt->conn_handle < NRF_SDH_BLE_CENTRAL_LINK_COUNT);
where p_gap_evt->conn_handle is 292.
Can you tell me, please, what does this value mean?
I guess that this is the cause why I cannot send any string from central to peripheral through ble_nus_c_string_send or ble_nus_data_send.
I'm using nRF5_SDK_15.3.0_59ac345, s140.
Thank you.