All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ v2 1/3] monitor: Decode Bluetooth 6.0 version
@ 2025-11-04 14:25 Luiz Augusto von Dentz
  2025-11-04 14:25 ` [PATCH BlueZ v2 2/3] emulator: Add support for LL Extended Feature Set Luiz Augusto von Dentz
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Luiz Augusto von Dentz @ 2025-11-04 14:25 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This decodes 0x0e as Bluetooth 6.0.
---
 monitor/packet.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/monitor/packet.c b/monitor/packet.c
index ceed85318b3b..06c0894d8a18 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -2526,6 +2526,9 @@ void packet_print_version(const char *label, uint8_t version,
 	case 0x0d:
 		str = "Bluetooth 5.4";
 		break;
+	case 0x0e:
+		str = "Bluetooth 6.0";
+		break;
 	default:
 		str = "Reserved";
 		break;
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-11-06 23:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-04 14:25 [PATCH BlueZ v2 1/3] monitor: Decode Bluetooth 6.0 version Luiz Augusto von Dentz
2025-11-04 14:25 ` [PATCH BlueZ v2 2/3] emulator: Add support for LL Extended Feature Set Luiz Augusto von Dentz
2025-11-04 14:25 ` [PATCH BlueZ v2 3/3] mgmt-tester: Add tests for 5.2 and 6.0 Bluetooth version Luiz Augusto von Dentz
2025-11-04 16:11 ` [BlueZ,v2,1/3] monitor: Decode Bluetooth 6.0 version bluez.test.bot
2025-11-06 23:10 ` [PATCH BlueZ v2 1/3] " patchwork-bot+bluetooth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.