mirror of https://github.com/arendst/Tasmota.git
ArduinoOTA support only ESP8266 (#18528)
* ArduinoOTA support only ESP8266 * add comment ArduinoOTA
This commit is contained in:
parent
e4e2fcdc6d
commit
c33472d9b6
|
@ -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)
|
||||
|
|
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue