WIP handling BB<>BB notifications
This commit is contained in:
parent
3d9a9c530c
commit
7be60e623a
1 changed files with 8 additions and 0 deletions
|
@ -377,6 +377,14 @@ static int ble_gap_event(struct ble_gap_event *event, void *arg) {
|
|||
event->mtu.value);
|
||||
break;
|
||||
|
||||
case BLE_GAP_EVENT_NOTIFY_RX:
|
||||
ESP_LOGI(TAG, "BLE_GAP_EVENT_NOTIFY_RX; conn_handle=%d mtu=%d attr_handle=%d\n",
|
||||
event->mtu.conn_handle,
|
||||
event->mtu.value,
|
||||
event->notify_rx.attr_handle);
|
||||
|
||||
break;
|
||||
|
||||
case BLE_GAP_EVENT_NOTIFY_TX:
|
||||
ESP_LOGI(TAG, "BLE_GAP_EVENT_NOTIFY_TX; conn_handle=%d mtu=%d\n",
|
||||
event->mtu.conn_handle,
|
||||
|
|
Loading…
Reference in a new issue