Skip to content

Commit

Permalink
host/ble_att.c: add missing OP code in ble_att_is_request_op
Browse files Browse the repository at this point in the history
Assert was hit when BLE_ATT_OP_NOTIFY_MULTI_REQ was received.
  • Loading branch information
KKopyscinski committed Aug 16, 2023
1 parent d0dd7d1 commit 0379060
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nimble/host/src/ble_att.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0379060

Please sign in to comment.