File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
components/bluetooth/ble_profiles/esp/ble_ota Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 7373
7474* BLE-OTA:
7575 * Add support for Delta OTA.
76+
77+ ## v0.1.14 - 2024-11-21
78+ * BLE-OTA:
79+ * Add support for enabling BLE 5.0 for NimBLE
Original file line number Diff line number Diff line change 1- version : " 0.1.13 "
1+ version : " 0.1.14 "
22targets :
33 - esp32
44 - esp32c3
Original file line number Diff line number Diff line change 11/*
2- * SPDX-FileCopyrightText: 2019-2023 Espressif Systems (Shanghai) CO LTD
2+ * SPDX-FileCopyrightText: 2019-2024 Espressif Systems (Shanghai) CO LTD
33 *
44 * SPDX-License-Identifier: Apache-2.0
55*/
@@ -655,14 +655,15 @@ esp_ble_ota_ext_advertise(void)
655655
656656 /* enable connectable advertising */
657657 params .connectable = 1 ;
658+ params .scannable = 1 ;
658659
659660 /* advertise using random addr */
660661 params .own_addr_type = BLE_OWN_ADDR_PUBLIC ;
661662
662663 params .primary_phy = BLE_HCI_LE_PHY_1M ;
663- params .secondary_phy = BLE_HCI_LE_PHY_2M ;
664- //params.tx_power = 127;
664+ params .secondary_phy = BLE_HCI_LE_PHY_1M ;
665665 params .sid = 1 ;
666+ params .legacy_pdu = 1 ;
666667
667668 params .itvl_min = BLE_GAP_ADV_FAST_INTERVAL1_MIN ;
668669 params .itvl_max = BLE_GAP_ADV_FAST_INTERVAL1_MIN ;
You can’t perform that action at this time.
0 commit comments