diff --git a/main/ble.c b/main/ble.c index 87609f7..da40861 100644 --- a/main/ble.c +++ b/main/ble.c @@ -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,