ArduinoOTA support only ESP8266 (#18528)

* ArduinoOTA support only ESP8266

* add comment ArduinoOTA
This commit is contained in:
Jason2866 2023-04-27 14:19:27 +02:00 committed by GitHub
parent e4e2fcdc6d
commit c33472d9b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -398,7 +398,7 @@
//#define USE_TASMESH // Enable Tasmota Mesh using ESP-NOW (+11k code)
// -- OTA -----------------------------------------
//#define USE_ARDUINO_OTA // Add optional support for Arduino OTA (+13k code)
//#define USE_ARDUINO_OTA // Add optional support for Arduino OTA with ESP8266 (+13k code)
// -- Influxdb ------------------------------------
//#define USE_INFLUXDB // Enable influxdb support (+5k code)

View File

@ -1638,7 +1638,7 @@ void Every250mSeconds(void)
}
}
#ifdef USE_ARDUINO_OTA
#if defined(ESP8266) && defined(USE_ARDUINO_OTA)
/*********************************************************************************************\
* Allow updating via the Arduino OTA-protocol.
*