Skip to content

Commit 9263b3a

Browse files
authored
Merge pull request #397 from lyusupov/master
fix build for ESP32-C5 target with Arduino-ESP32 Core 3.3.x
2 parents 757ae3b + 1baf959 commit 9263b3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utility/HCIVirtualTransport.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ int HCIVirtualTransportClass::begin()
8080
#if CONFIG_IDF_TARGET_ESP32
8181
bt_cfg.mode = ESP_BT_MODE_BLE; //original esp32 chip
8282
#else
83-
#if !(CONFIG_IDF_TARGET_ESP32C2 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32H2)
83+
#if !(CONFIG_IDF_TARGET_ESP32C2 || CONFIG_IDF_TARGET_ESP32C5 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32H2)
8484
bt_cfg.bluetooth_mode = ESP_BT_MODE_BLE; //different api for newer models
8585
#endif
8686
#endif

0 commit comments

Comments
 (0)