From 6ec6f88c2a3abaee59e20387553630754fb8a9aa Mon Sep 17 00:00:00 2001 From: Brian Gix Date: Thu, 22 Sep 2022 13:38:50 -0700 Subject: [PATCH] lib: Add defines of new MGMT opcodes and events Populated new opcodes and events into static mgmt_ev and mgmt_op string arrays. Signed-off-by: Manika Shrivastava Signed-off-by: Ayush Garg --- lib/mgmt.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/mgmt.h b/lib/mgmt.h index 535d46e..5d1a881 100644 --- a/lib/mgmt.h +++ b/lib/mgmt.h @@ -1180,6 +1180,10 @@ static const char *mgmt_op[] = { "Add Extended Advertisement Parameters", /* 0x0054 */ "Add Extended Advertisement Data", "Add Advertisement Patterns Monitor RSSI", + "Set Mesh Receiver", + "Read Mesh Features", + "Mesh Send", + "Mesh Send Cancel", }; static const char *mgmt_ev[] = { @@ -1232,6 +1236,8 @@ static const char *mgmt_ev[] = { "Controller Resume", "Advertisement Monitor Device Found", /* 0x002f */ "Advertisement Monitor Device Lost", + "Mesh Packet Found", + "Mesh Packet Complete", }; static const char *mgmt_status[] = { -- 2.7.4