File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1828,6 +1828,7 @@ struct ble_hci_ev_le_subev_biginfo_adv_report {
1828
1828
#define BLE_HCI_VER_BCS_5_0 (9)
1829
1829
#define BLE_HCI_VER_BCS_5_1 (10)
1830
1830
#define BLE_HCI_VER_BCS_5_2 (11)
1831
+ #define BLE_HCI_VER_BCS_5_3 (12)
1831
1832
1832
1833
#define BLE_LMP_VER_BCS_1_0b (0)
1833
1834
#define BLE_LMP_VER_BCS_1_1 (1)
@@ -1841,6 +1842,7 @@ struct ble_hci_ev_le_subev_biginfo_adv_report {
1841
1842
#define BLE_LMP_VER_BCS_5_0 (9)
1842
1843
#define BLE_LMP_VER_BCS_5_1 (10)
1843
1844
#define BLE_LMP_VER_BCS_5_2 (11)
1845
+ #define BLE_LMP_VER_BCS_5_3 (12)
1844
1846
1845
1847
/* selected HCI and LMP version */
1846
1848
#if MYNEWT_VAL (BLE_VERSION ) == 50
@@ -1852,7 +1854,9 @@ struct ble_hci_ev_le_subev_biginfo_adv_report {
1852
1854
#elif MYNEWT_VAL (BLE_VERSION ) == 52
1853
1855
#define BLE_HCI_VER_BCS BLE_HCI_VER_BCS_5_2
1854
1856
#define BLE_LMP_VER_BCS BLE_LMP_VER_BCS_5_2
1855
-
1857
+ #elif MYNEWT_VAL (BLE_VERSION ) == 53
1858
+ #define BLE_HCI_VER_BCS BLE_HCI_VER_BCS_5_3
1859
+ #define BLE_LMP_VER_BCS BLE_LMP_VER_BCS_5_3
1856
1860
#endif
1857
1861
1858
1862
#define BLE_HCI_DATA_HDR_SZ 4
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ syscfg.defs:
80
80
This allows to configure supported Bluetooth Core version. Some
81
81
features may not be available if version is too low. Version is
82
82
integer for easy comparison.
83
- range : 50, 51, 52
83
+ range : 50, 51, 52, 53
84
84
value : 50
85
85
BLE_ISO :
86
86
description : >
You can’t perform that action at this time.
0 commit comments