You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The BLE_GAP_EVENT_PASSKEY_ACTION event is only passed to the connection event handler (the one passed to ble_gap_ext_adv_configure() or ble_gap_connect()) but not to event listeners registered with ble_gap_event_listener_register().
Only in ble_gap_repeat_pairing_event(), ble_gap_identity_event(), ble_gap_passkey_event(), ble_gap_rx_param_req() and ble_gap_rx_l2cap_update_req() there is only:
ble_gap_call_conn_event_cb(&event, conn_handle);
The text was updated successfully, but these errors were encountered:
The
BLE_GAP_EVENT_PASSKEY_ACTION
event is only passed to the connection event handler (the one passed toble_gap_ext_adv_configure()
orble_gap_connect()
) but not to event listeners registered withble_gap_event_listener_register()
.Is there a reason for this?
Most events in ble_gap.c are passed to both:
Only in
ble_gap_repeat_pairing_event()
,ble_gap_identity_event()
,ble_gap_passkey_event()
,ble_gap_rx_param_req()
andble_gap_rx_l2cap_update_req()
there is only:The text was updated successfully, but these errors were encountered: