1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-13 13:01:55 +03:00

Fix typo.

This commit is contained in:
Stavros Korokithakis
2015-11-28 16:37:36 +02:00
parent 14949f50d6
commit e9f2f1c989
3 changed files with 4 additions and 4 deletions

View File

@ -266,11 +266,11 @@ void ArduinoOTAClass::_runUpdate() {
delay(1);
if (!waited){
#if OTA_DEBUG
Serial.printf("Recieve Failed\n");
Serial.printf("Receive Failed\n");
#endif
_udp_ota->listen(*IP_ADDR_ANY, _port);
if (_error_callback) {
_error_callback(OTA_RECIEVE_ERROR);
_error_callback(OTA_RECEIVE_ERROR);
}
_state = OTA_IDLE;
}