Skip to content

Commit 64b51f9

Browse files
committed
less changes
1 parent 403974d commit 64b51f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+120
-120
lines changed

cores/esp32/esp32-hal-bt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "sdkconfig.h"
1616
#include "soc/soc_caps.h"
17-
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BLUEDROID_ENABLED) && SOC_BT_SUPPORTED
17+
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BLUEDROID_ENABLED) && SOC_BLE_SUPPORTED
1818

1919
#include "esp_bt.h"
2020
#include "esp_bt_main.h"

cores/esp32/esp32-hal-bt.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#define _ESP32_ESP32_HAL_BT_H_
1717

1818
#include "soc/soc_caps.h"
19-
#if SOC_BT_SUPPORTED
19+
#if SOC_BLE_SUPPORTED
2020

2121
#include "esp32-hal.h"
2222

@@ -40,6 +40,6 @@ bool btStop();
4040
}
4141
#endif
4242

43-
#endif /* SOC_BT_SUPPORTED */
43+
#endif /* SOC_BLE_SUPPORTED */
4444

4545
#endif /* _ESP32_ESP32_HAL_BT_H_ */

cores/esp32/esp32-hal-misc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "esp_ota_ops.h"
2727
#endif //CONFIG_APP_ROLLBACK_ENABLE
2828
#include "esp_private/startup_internal.h"
29-
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BLUEDROID_ENABLED) && SOC_BT_SUPPORTED
29+
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BLUEDROID_ENABLED) && SOC_BLE_SUPPORTED
3030
#include "esp_bt.h"
3131
#if CONFIG_IDF_TARGET_ESP32
3232
bool btInUse() __attribute__((weak));
@@ -304,7 +304,7 @@ void initArduino() {
304304
if (err) {
305305
log_e("Failed to initialize NVS! Error: %u", err);
306306
}
307-
#if defined(CONFIG_BLUEDROID_ENABLED) && SOC_BT_SUPPORTED
307+
#if defined(CONFIG_BLUEDROID_ENABLED) && SOC_BLE_SUPPORTED
308308
if (!btInUse()) {
309309
esp_bt_controller_mem_release(ESP_BT_MODE_BTDM);
310310
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"fqbn_append": "PartitionScheme=huge_app",
33
"requires": [
4-
"CONFIG_SOC_BT_SUPPORTED=y"
4+
"CONFIG_SOC_BLE_SUPPORTED=y"
55
]
66
}

libraries/BLE/examples/Client/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"fqbn_append": "PartitionScheme=huge_app",
33
"requires": [
4-
"CONFIG_SOC_BT_SUPPORTED=y"
4+
"CONFIG_SOC_BLE_SUPPORTED=y"
55
]
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"fqbn_append": "PartitionScheme=huge_app",
33
"requires": [
4-
"CONFIG_SOC_BT_SUPPORTED=y"
4+
"CONFIG_SOC_BLE_SUPPORTED=y"
55
]
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"fqbn_append": "PartitionScheme=huge_app",
33
"requires": [
4-
"CONFIG_SOC_BT_SUPPORTED=y"
4+
"CONFIG_SOC_BLE_SUPPORTED=y"
55
]
66
}

libraries/BLE/examples/Notify/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"fqbn_append": "PartitionScheme=huge_app",
33
"requires": [
4-
"CONFIG_SOC_BT_SUPPORTED=y"
4+
"CONFIG_SOC_BLE_SUPPORTED=y"
55
]
66
}

libraries/BLE/examples/Scan/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"fqbn_append": "PartitionScheme=huge_app",
33
"requires": [
4-
"CONFIG_SOC_BT_SUPPORTED=y"
4+
"CONFIG_SOC_BLE_SUPPORTED=y"
55
]
66
}

libraries/BLE/examples/Server/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"fqbn_append": "PartitionScheme=huge_app",
33
"requires": [
4-
"CONFIG_SOC_BT_SUPPORTED=y"
4+
"CONFIG_SOC_BLE_SUPPORTED=y"
55
]
66
}

0 commit comments

Comments
 (0)