From 5f0297f13177c7d21590c16275ae11355ac5ef94 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 4 Oct 2023 08:08:33 +0200 Subject: [PATCH] lib: Add Bluetooth 5.3 and Bluetooth 5.4 into the version table --- lib/hci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/hci.c b/lib/hci.c index 5228c2ad2..bd735a440 100644 --- a/lib/hci.c +++ b/lib/hci.c @@ -658,6 +658,8 @@ static hci_map ver_map[] = { { "5.0", 0x09 }, { "5.1", 0x0a }, { "5.2", 0x0b }, + { "5.3", 0x0c }, + { "5.4", 0x0d }, { NULL } }; -- 2.47.3