From b499a1d1d576d2f9d6c89cada08818bc50f90fd0 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Fri, 15 Oct 2021 13:11:28 +0200 Subject: [PATCH] Fix esp32-c3 default OTAurl --- tasmota/my_user_config.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tasmota/my_user_config.h b/tasmota/my_user_config.h index 1edee92e2..967560e03 100644 --- a/tasmota/my_user_config.h +++ b/tasmota/my_user_config.h @@ -96,7 +96,11 @@ #define OTA_URL "http://ota.tasmota.com/tasmota/release/tasmota.bin.gz" // [OtaUrl] #endif // ESP8266 #ifdef ESP32 +#ifdef CONFIG_IDF_TARGET_ESP32C3 +#define OTA_URL "http://ota.tasmota.com/tasmota32/release/tasmota32c3.bin" // [OtaUrl] +#else // No CONFIG_IDF_TARGET_ESP32C3 #define OTA_URL "http://ota.tasmota.com/tasmota32/release/tasmota32.bin" // [OtaUrl] +#endif // CONFIG_IDF_TARGET_ESP32C3 #endif // ESP32 // -- MQTT ----------------------------------------