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 ----------------------------------------