-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'docs/add_general_notes_v3.1' into 'release/v3.1'
Add general notes to main page of document (backport v3.1) See merge request sdk/ESP8266_RTOS_SDK!757
- Loading branch information
Showing
3 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
************* | ||
General Notes | ||
************* | ||
|
||
Adding this content here is to improve the user's development efficiency and avoid stepping into known problems. | ||
|
||
1. Bootloader | ||
^^^^^^^^^^^^^ | ||
|
||
V3.1 updated the bootloader to initialize SPI flash I/O mode and clock. So if you are using the V3.0 bootloader, | ||
and now upgrade to the new SDK, please disable the following configuration in the menuconfig: | ||
|
||
- "Bootloader config ---> [ ] Bootloader init SPI flash" | ||
|
||
2. Sniffer or Smartconfig | ||
^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
We moved some functions from IRAM to flash, including `malloc` and `free` fucntions, to save more memory. | ||
In this case, please do not read/write/erase flash during sniffer/promiscuous mode. | ||
You need to disable the sniffer/promiscuous mode at first, then read/write/erase flash. | ||
|
||
3. ESP8285 or ESP8266 + 1MB flash | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
ESP8285 or ESP8266 + 1MB flash can use "Copy OTA Mode" for OTA, more details are in the `examples/system/ota <https://github.com/espressif/ESP8266_RTOS_SDK/tree/master/examples/system/ota/>`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters