Hi,
would like to run several (8) BLE_HRS_C in parallel to one BLE_NUS on a nRF5. Can that work?
In general, is it there any sample code showing how to implement peripheral role (BLE_NUS) in parallel with central role (BLE_HRS_C)?
The problem I am encountering (on nRF52840 DK, nRF5_SDK_15.2.0_9412b96) is with BLE_NUS, when sending data (ble_nus_data_send()) it hangs in ble_link_ctx_manager.c:70:
```
70 if (conn_id >= p_link_ctx_storage->max_links_cnt)
71 {
72 return NRF_ERROR_NO_MEM;
73 }
```
as the connection id of the peripheral (BLE_NUS) conn_id==8 and there is only 1 BLE_LINK_CTX_MANAGER_DEF defined (in ble_nus.c), therefore p_link_ctx_storage->max_links_cnt==1. What is the right way to solve this?
Thanks,
Andrea