Skip to content

Commit 7cd77c2

Browse files
cvinayakcarlescufi
authored andcommitted
Bluetooth: Add identifiers for Bluetooth 5.3
The Bluetooth 5.3 specification was recently released, and has a new version identifier (12) assigned to it in the Bluetooth Assigned Numbers. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
1 parent c995b11 commit 7cd77c2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

include/bluetooth/hci.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,7 @@ struct bt_hci_rp_configure_data_path {
608608
#define BT_HCI_VERSION_5_0 9
609609
#define BT_HCI_VERSION_5_1 10
610610
#define BT_HCI_VERSION_5_2 11
611+
#define BT_HCI_VERSION_5_3 12
611612

612613
#define BT_HCI_OP_READ_LOCAL_VERSION_INFO BT_OP(BT_OGF_INFO, 0x0001)
613614
struct bt_hci_rp_read_local_version_info {

subsys/bluetooth/host/hci_core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3047,7 +3047,7 @@ static const char *ver_str(uint8_t ver)
30473047
{
30483048
const char * const str[] = {
30493049
"1.0b", "1.1", "1.2", "2.0", "2.1", "3.0", "4.0", "4.1", "4.2",
3050-
"5.0", "5.1", "5.2"
3050+
"5.0", "5.1", "5.2", "5.3"
30513051
};
30523052

30533053
if (ver < ARRAY_SIZE(str)) {

subsys/bluetooth/shell/bt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ static const char *ver_str(uint8_t ver)
360360
{
361361
const char * const str[] = {
362362
"1.0b", "1.1", "1.2", "2.0", "2.1", "3.0", "4.0", "4.1", "4.2",
363-
"5.0", "5.1",
363+
"5.0", "5.1", "5.2", "5.3"
364364
};
365365

366366
if (ver < ARRAY_SIZE(str)) {

0 commit comments

Comments
 (0)