You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/ota_updates/ota_updates.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ Instructions below demonstrate configuration of OTA on NodeMCU 1.0 (ESP-12E Modu
114
114
115
115
**Note:** Windows users should select “Add python.exe to Path” (see below – this option is not selected by default).
116
116
117
-

117
+

118
118
119
119
2. Now prepare the sketch and configuration for the upload over a serial port.
120
120
- Start Arduino IDE and load sketch BasicOTA.ino available under File > Examples > ArduinoOTA
@@ -187,7 +187,7 @@ When uploading, Arduino IDE used previously entered password, so the upload fail
187
187
188
188
If OTA update fails, first step is to check for error messages that may be shown in upload window of Arduino IDE. If this is not providing any useful hints try to upload again while checking what is shown by ESP on serial port. Serial Monitor from IDE will not be useful in that case. When attempting to open it, you will likely see the following:
189
189
190
-

190
+

191
191
192
192
This window is for Arduino Yún and not yet implemented for esp8266/Arduino. It shows up because IDE is attempting to open Serial Monitor using network port you have selected for OTA upload.
193
193
@@ -205,11 +205,11 @@ If upload fails you will likely see errors caught by the uploader, exception and
205
205
206
206
The most common causes of OTA failure are as follows:
207
207
* not enough physical memory on the chip (e.g. ESP01 with 512K flash memory is not enough for OTA),
208
-
* too much memory declared for SPIFFS so new sketch will not fit between existing sketch and SPIFFS – see [Update process - memory view](https://github.com/esp8266/Arduino/blob/master/doc/ota_updates/ota_updates.md#update-process---memory-view),
208
+
* too much memory declared for SPIFFS so new sketch will not fit between existing sketch and SPIFFS – see [Update process - memory view](#update-process---memory-view),
209
209
* too little memory declared in Arduino IDE for your selected board (i.e. less than physical size).
210
210
211
211
For more details regarding flash memory layout please check [File system](https://github.com/esp8266/Arduino/blob/master/doc/filesystem.md).
212
-
For overview where new sketch is stored, how it is copied and how memory is organized for the purpose of OTA see [Update process - memory view](https://github.com/esp8266/Arduino/blob/master/doc/ota_updates/ota_updates.md#update-process---memory-view).
212
+
For overview where new sketch is stored, how it is copied and how memory is organized for the purpose of OTA see [Update process - memory view](#update-process---memory-view).
0 commit comments