nrf5/bluetooth: Updating bluetooth le driver to handle GAP conn param update request. Also updating minor syntax in previous switch case.

This commit is contained in:
Glenn Ruben Bakke 2017-03-26 21:02:25 +02:00
parent fb983c7692
commit cd2149a47f

View File

@ -824,8 +824,15 @@ static void ble_evt_handler(ble_evt_t * p_ble_evt) {
// TODO: Fix unsafe callback to possible undefined callback... // TODO: Fix unsafe callback to possible undefined callback...
adv_event_handler(mp_adv_observer, adv_event_handler(mp_adv_observer,
p_ble_evt->header.evt_id, p_ble_evt->header.evt_id,
&adv_data); &adv_data);
break;
case BLE_GAP_EVT_CONN_PARAM_UPDATE_REQUEST:
BLE_DRIVER_LOG("BLE EVT CONN PARAM UPDATE REQUEST\n");
(void)sd_ble_gap_conn_param_update(p_ble_evt->evt.gap_evt.conn_handle,
&p_ble_evt->evt.gap_evt.params.conn_param_update_request.conn_params);
break; break;
#endif #endif