@@ -6,8 +6,8 @@ ESP8266 is a popular WiFi-enabled System-on-Chip (SoC) by Espressif Systems.
66Multitude of boards
77-------------------
88
9- There are multitude of modules and boards from different sources which carry
10- ESP8266 chip. MicroPython tries to provide a generic port which would run on
9+ There are a multitude of modules and boards from different sources which carry
10+ the ESP8266 chip. MicroPython tries to provide a generic port which would run on
1111as many boards/modules as possible, but there may be limitations. Adafruit
1212Feather HUZZAH board is taken as a reference board for the port (for example,
1313testing is performed on it). If you have another board, please make sure you
@@ -18,8 +18,8 @@ To make a generic ESP8266 port and support as many boards as possible,
1818following design and implementation decision were made:
1919
2020* GPIO pin numbering is based on ESP8266 chip numbering, not some "logical"
21- numbering of a particular board. Please have manual/pin diagram of your board
22- handy to find correspondce between your board pins and actual ESP8266 pins.
21+ numbering of a particular board. Please have the manual/pin diagram of your board
22+ at hand to find correspondence between your board pins and actual ESP8266 pins.
2323 We also encourage users of various boards to share this mapping via MicroPython
2424 forum, with the idea to collect community-maintained reference materials
2525 eventually.
@@ -37,10 +37,10 @@ Technical specifications and SoC datasheets
3737
3838The datasheets and other reference material for ESP8266 chip are available
3939from the vendor site: http://bbs.espressif.com/viewtopic.php?f=67&t=225 .
40- The are primary reference for the chip technical specifications, capabilities,
40+ They are the primary reference for the chip technical specifications, capabilities,
4141operating modes, internal functioning, etc.
4242
43- For your convinience , some of technical specifications are provided below:
43+ For your convenience , some of technical specifications are provided below:
4444
4545* Architecture: Xtensa lx106
4646* CPU frequency: 80MHz overclockable to 160MHz
@@ -64,13 +64,13 @@ Boot process
6464On boot, MicroPython EPS8266 port executes ``_boot.py `` script from internal
6565frozen modules. It mounts filesystem in FlashROM, or if it's not available,
6666performs first-time setup of the module and creates the filesystem. This
67- part of boot process is considered fixed, and not available for customization
67+ part of the boot process is considered fixed, and not available for customization
6868for end users (even if you build from source, please refrain from changes to
6969it; customization of early boot process is available only to advanced users
7070and developers, who can diagnose themselves any issues arising from
7171modifying the standard process).
7272
73- Once filesystem is mounted, ``boot.py `` is executed from it. The standard
73+ Once the filesystem is mounted, ``boot.py `` is executed from it. The standard
7474version of this file is created during first-time module set up and by
7575defaults starts up a WebREPL daemon to handle incoming connections. This
7676file is customizable by end users (for example, you may want to disable
@@ -89,5 +89,5 @@ the following in ``main.py``::
8989 import my_app
9090 my_app.main()
9191
92- This will allow to keep structure of your application clear, as well as
92+ This will allow to keep the structure of your application clear, as well as
9393allow to install multiple applications on a board, and switch among them.
0 commit comments