From 131a11e61e7380dd25550329a2329ce45ba1ad05 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 5 Sep 2024 11:22:26 +0300 Subject: [PATCH] Bluetooth: Host: Add decoding for Bluetooth HCI version 6.0 Add decoding for version 6.0, now that the new core specification has been released. Signed-off-by: Johan Hedberg --- subsys/bluetooth/host/hci_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/host/hci_core.c b/subsys/bluetooth/host/hci_core.c index c80f4cfd327..cfd44929fb2 100644 --- a/subsys/bluetooth/host/hci_core.c +++ b/subsys/bluetooth/host/hci_core.c @@ -3792,7 +3792,7 @@ const char *bt_hci_get_ver_str(uint8_t core_version) { const char * const str[] = { "1.0b", "1.1", "1.2", "2.0", "2.1", "3.0", "4.0", "4.1", "4.2", - "5.0", "5.1", "5.2", "5.3", "5.4" + "5.0", "5.1", "5.2", "5.3", "5.4", "6.0" }; if (core_version < ARRAY_SIZE(str)) {