WIP handling BB<>BB notifications

This commit is contained in:
Morgan 'ARR\!' Allen 2021-09-22 18:55:26 -07:00
parent 3d9a9c530c
commit 7be60e623a
1 changed files with 8 additions and 0 deletions

View File

@ -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,