From 0379060e2abf27f009cd31421f2aced9095ebfbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Kopy=C5=9Bci=C5=84ski?= Date: Wed, 16 Aug 2023 08:39:23 +0200 Subject: [PATCH] host/ble_att.c: add missing OP code in ble_att_is_request_op Assert was hit when BLE_ATT_OP_NOTIFY_MULTI_REQ was received. --- nimble/host/src/ble_att.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nimble/host/src/ble_att.c b/nimble/host/src/ble_att.c index a65bc939f2..3c5eaf75e1 100644 --- a/nimble/host/src/ble_att.c +++ b/nimble/host/src/ble_att.c @@ -649,6 +649,7 @@ ble_att_is_request_op(uint8_t opcode) case BLE_ATT_OP_EXEC_WRITE_REQ: case BLE_ATT_OP_INDICATE_REQ: case BLE_ATT_OP_READ_MULT_VAR_REQ: + case BLE_ATT_OP_NOTIFY_MULTI_REQ: return true; } return false;