Hi,
I don't find an answer to my question and maybe I'm missing the basic of the BLE communication here. I need to transmit data as fast as possible to ONE central device thanks to a Characteristic with Notify.
So my first attempt was to fast advertising non-stop (without timeout). But I'm wondering, should I keep advertising when the connection is established?
Because in my ble_evt_handler function I only got :
case BLE_GAP_EVT_CONNECTED: NRF_LOG_INFO("Connected"); m_conn_handle = p_ble_evt->evt.gap_evt.conn_handle; break;
So it keeps advertising for potential other central device while notifying my Characteristic?
Is it possible to stop advertising while connected and dedicate the speed to only Notify the Characteristic?
Thanks for the clarification