diff options
author | Angus Gratton <angus@redyak.com.au> | 2024-10-02 19:16:39 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-11-19 10:57:26 +1100 |
commit | 0e7c3901b897a1edd53b56b6119f2d4119e88842 (patch) | |
tree | 1264a33779159677fa6550cfc8bdecd91c2ee6ea /docs/esp8266/quickref.rst | |
parent | cbffe61f96d060ed4af2bde7e3043a3664dc147a (diff) |
docs: Add a "Reset and Boot Sequence" reference page.
Previously individual ports documented these aspects to varying degrees,
but most of the information is common to all ports.
In particular, this adds a canonical explanation of `boot.py` and
`main.py`.
This work was funded through GitHub Sponsors.
Signed-off-by: Angus Gratton <angus@redyak.com.au>
Diffstat (limited to 'docs/esp8266/quickref.rst')
-rw-r--r-- | docs/esp8266/quickref.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/esp8266/quickref.rst b/docs/esp8266/quickref.rst index 6f02da95d..635f1f834 100644 --- a/docs/esp8266/quickref.rst +++ b/docs/esp8266/quickref.rst @@ -163,10 +163,10 @@ sys.stdin.read() if it's needed to read characters from the UART(0) while it's also used for the REPL (or detach, read, then reattach). When detached the UART(0) can be used for other purposes. -If there are no objects in any of the dupterm slots when the REPL is -started (on hard or soft reset) then UART(0) is automatically attached. -Without this, the only way to recover a board without a REPL would be to -completely erase and reflash (which would install the default boot.py which +If there are no objects in any of the dupterm slots when the REPL is started (on +:doc:`hard or soft reset </reference/reset_boot>`) then UART(0) is automatically +attached. Without this, the only way to recover a board without a REPL would be +to completely erase and reflash (which would install the default boot.py which attaches the REPL). To detach the REPL from UART0, use:: |