static void ble_evt_handler(ble_evt_t const * p_ble_evt, void * p_context) { uint16_t conn_handle = p_ble_evt->evt.gap_evt.conn_handle; uint16_t role = ble_conn_state_role(conn_handle); // Based on the role this device plays in the connection, dispatch to the right handler. if (role == BLE_GAP_ROLE_PERIPH || ble_evt_is_advertising_timeout(p_ble_evt)) { ble_evt_dispatch(p_ble_evt, p_context); } else if ((role == BLE_GAP_ROLE_CENTRAL) || (p_ble_evt->header.evt_id == BLE_GAP_EVT_ADV_REPORT)) { ble_module_central_evt(p_ble_evt, p_context); } }
时间: 2023-10-16 07:07:28 浏览: 171
nRF51822的 ble_app_hrs的说明文档
4星 · 用户满意度95%
这是一个 Bluetooth Low Energy (BLE) 事件处理函数,用于处理 BLE 事件。它首先从事件中获取连接句柄和连接角色信息,然后根据角色信息将事件分发给不同的处理函数。如果设备角色是 BLE_GAP_ROLE_PERIPH,或者事件是广告超时事件,则将事件分发给 ble_evt_dispatch 函数进行处理。如果设备角色是 BLE_GAP_ROLE_CENTRAL,或者事件是 BLE_GAP_EVT_ADV_REPORT,则将事件分发给 ble_module_central_evt 函数进行处理。
阅读全文