diff --git a/app/le_gatt_c.c b/app/le_gatt_c.c index f88bd8d..8c23fb8 100644 --- a/app/le_gatt_c.c +++ b/app/le_gatt_c.c @@ -99,7 +99,7 @@ ret_code_t le_gatt_ccdc_configure(uint16_t conn_handle, uint16_t char_handle, bo NRF_LOG_INFO("Configuring CCCD Handle = 0x%04X, Connection Handle = 0x%04X", char_handle + 1, - conn_handle); + notification_enable); nrf_ble_gq_req_t cccd_req; uint16_t cccd_val = notification_enable ? BLE_GATT_HVX_NOTIFICATION : BLE_GATT_HVX_INVALID; diff --git a/app/le_uart_c.c b/app/le_uart_c.c index 3e5f301..05fbeb9 100644 --- a/app/le_uart_c.c +++ b/app/le_uart_c.c @@ -104,7 +104,7 @@ ret_code_t le_uart_ccdc_configure(uint16_t conn_handle, uint16_t char_handle, bo NRF_LOG_INFO("Configuring CCCD Handle = 0x%04X, Connection Handle = 0x%04X", char_handle + 1, - conn_handle); + notification_enable); nrf_ble_gq_req_t cccd_req; uint16_t cccd_val = notification_enable ? BLE_GATT_HVX_NOTIFICATION : BLE_GATT_HVX_INVALID;