mirror of
https://github.com/micropython/micropython.git
synced 2025-09-08 19:00:50 +02:00
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>
54 lines
1.7 KiB
ReStructuredText
54 lines
1.7 KiB
ReStructuredText
.. _renesas-ra_reset:
|
|
|
|
Reset and boot mode
|
|
===================
|
|
|
|
Resetting the board
|
|
-------------------
|
|
|
|
If something goes wrong, you can reset the board in two ways. The first is
|
|
to press CTRL-D at the MicroPython prompt, which performs a soft reset.
|
|
You will see a message something like ::
|
|
|
|
MPY: sync filesystems
|
|
MPY: soft reboot
|
|
MicroPython v1.18-293-g339aa09b8-dirty on 2022-03-26; RA6M2_EK with RA6M2
|
|
Type "help()" for more information.
|
|
>>>
|
|
|
|
If that isn't working you can perform a hard reset (turn-it-off-and-on-again)
|
|
by pressing the RESET button. This will end your session, disconnecting
|
|
whatever program (PuTTY, screen, etc) that you used to connect to the board.
|
|
|
|
For more details, see :doc:`/reference/reset_boot`.
|
|
|
|
boot mode
|
|
---------
|
|
|
|
There are 3 boot modes:
|
|
|
|
* normal boot mode
|
|
* safe boot mode
|
|
* factory filesystem boot mode
|
|
|
|
boot.py and main.py are executed on "normal boot mode". See :ref:`boot_sequence`.
|
|
|
|
The other modes can be used to recover from :ref:`soft_bricking`:
|
|
|
|
boot.py and main.py are *NOT* executed on "safe boot mode".
|
|
|
|
The file system of internal flash is initialized and *all files are erased* on "factory filesystem boot mode".
|
|
|
|
For changing boot mode, please push the RESET button with pressing USER SW1
|
|
on the board:
|
|
|
|
* For normal boot mode, release the USER SW1 after LED1 flashes 4 times or more
|
|
|
|
* For safe boot mode, release the USER SW1 after LED1 flashes 2 times
|
|
|
|
* For factory file system boot mode, release the USER SW1 after LED1 flashes 3 times.
|
|
|
|
You have created the main.py which executes LED1 blinking in the previous part.
|
|
If you change the boot mode to safe boot mode, the MicroPython starts without
|
|
the execution of main.py.
|