summaryrefslogtreecommitdiff
path: root/monitor
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2022-11-07 23:01:10 +0100
committerMarcel Holtmann <marcel@holtmann.org>2022-11-07 23:01:10 +0100
commit3bd7df28cbbccd59cca5c35e95c4275229b0badf (patch)
tree4fb48239f3fd2d17424e7295beff1a53089373b4 /monitor
parent7e0e08ca5396bd9e40f25fac74018963f6516c61 (diff)
downloadbluez-3bd7df28cbbccd59cca5c35e95c4275229b0badf.tar.gz
monitor: Add some definitions from Bluetooth 5.3 Core specification
Diffstat (limited to 'monitor')
-rw-r--r--monitor/packet.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/monitor/packet.c b/monitor/packet.c
index c4e5182f0..dae763e22 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -2385,6 +2385,12 @@ void packet_print_version(const char *label, uint8_t version,
case 0x0a:
str = "Bluetooth 5.1";
break;
+ case 0x0b:
+ str = "Bluetooth 5.2";
+ break;
+ case 0x0c:
+ str = "Bluetooth 5.3";
+ break;
default:
str = "Reserved";
break;
@@ -2658,6 +2664,13 @@ static const struct bitfield_data features_le[] = {
{ 30, "Isochronous Broadcaster" },
{ 31, "Synchronized Receiver" },
{ 32, "Isochronous Channels (Host Support)" },
+ { 33, "LE Power Control Request" },
+ { 34, "LE Power Control Request" },
+ { 35, "LE Path Loss Monitoring" },
+ { 36, "Periodic Advertising ADI support" },
+ { 37, "Connection Subrating" },
+ { 38, "Connection Subrating (Host Support)" },
+ { 39, "Channel Classification" },
{ }
};