Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wemos committed Aug 17, 2021
1 parent 5466696 commit 02c0cd7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
23 changes: 12 additions & 11 deletions docs/en/s2/s2_mini.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ A mini wifi boards based ESP32-S2FN4R2.

Features
------------------
* based ESP32-S2FN4R2 WIFI IC
* Type-C USB
* 4MB Flash
* 2MB PSRAM
* 27x IO
* ADC, DAC, I2C, SPI, UART, USB OTG
* Compatible with LOLIN D1 mini shields
* Compatible with MicroPython, Arduino and ESP-IDF
* Default firmware: MicroPython
* based ESP32-S2FN4R2 WIFI IC
* Type-C USB
* 4MB Flash
* 2MB PSRAM
* 27x IO
* ADC, DAC, I2C, SPI, UART, USB OTG
* Compatible with LOLIN D1 mini shields
* Compatible with MicroPython, Arduino and ESP-IDF
* Default firmware: MicroPython

Tutorials
----------------------
Expand All @@ -37,8 +37,9 @@ Tutorials
Documentation
----------------------

* `Schematic V1.0.0[PDF] <../_static/files/sch_s2_mini_v1.0.0.pdf>`_
* `Dimension V1.0.0[PDF] <../_static/files/dim_s2_mini_v1.0.0.pdf>`_
* `Schematic V1.0.0[PDF] <../_static/files/sch_s2_mini_v1.0.0.pdf>`_
* `Dimension V1.0.0[PDF] <../_static/files/dim_s2_mini_v1.0.0.pdf>`_
* `ESP32-S2 Datasheet <https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf>`_


Technical specs
Expand Down
22 changes: 12 additions & 10 deletions docs/en/tutorials/s2/get_started_with_micropython_s2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,30 @@ you can flash MicroPython firmware by yourself.
Requirements
---------------

* `Python <https://www.python.org/downloads/>`_
* `esptool <https://github.com/espressif/esptool>`_ (for flash esp32-s2 firmware.)
.. highlight:: bash
* `Python <https://www.python.org/downloads/>`_
* `esptool <https://github.com/espressif/esptool>`_ (for flash esp32-s2 firmware.)

.. highlight:: bash

::
::

pip install esptool
S2 MINI Firmware
---------------
* `s2_mini_micropython_v1.16-200-g1b87e1793.bin <../../_static/files/s2_mini_firmware/s2_mini_micropython_v1.16-200-g1b87e1793.bin>`_
------------------
* `s2_mini_micropython_v1.16-200-g1b87e1793.bin <../../_static/files/s2_mini_firmware/s2_mini_micropython_v1.16-200-g1b87e1793.bin>`_




Flash firmware
-------------------
* Make S2 boards into flash mode.
* Flash using esptool.py

.. highlight:: bash
.. highlight:: bash

::
::

esptool.py --port PORT_NAME erase_flash
esptool.py --port PORT_NAME --baud 1000000 write_flash -z 0x1000 FIRMWARE.bin
Expand All @@ -46,7 +48,7 @@ Flash firmware

Quick reference
-------------------------
* `Quick reference for the ESP32 <https://docs.micropython.org/en/latest/esp32/quickref.html>`_
* `Quick reference for the ESP32 <https://docs.micropython.org/en/latest/esp32/quickref.html>`_



0 comments on commit 02c0cd7

Please sign in to comment.