From fa241f02493f5941284d06e4273f2692e301045b Mon Sep 17 00:00:00 2001 From: Rubin Gerritsen Date: Fri, 21 Feb 2020 13:07:25 +0100 Subject: [PATCH] bluetooth: Add decoding for BLE 5.2 version string The BLE 5.2 specification has been assigned the version number 0x0b. Signed-off-by: Rubin Gerritsen --- 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 01104354349..72ff874d405 100644 --- a/subsys/bluetooth/host/hci_core.c +++ b/subsys/bluetooth/host/hci_core.c @@ -4878,7 +4878,7 @@ static const char *ver_str(u8_t ver) { 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.0", "5.1", "5.2" }; if (ver < ARRAY_SIZE(str)) {