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 <johan.hedberg@silabs.com>
This commit is contained in:
Johan Hedberg 2024-09-05 11:22:26 +03:00 committed by Johan Hedberg
commit 131a11e61e

View file

@ -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)) {