@@ -6,8 +6,8 @@ ESP8266 is a popular WiFi-enabled System-on-Chip (SoC) by Espressif Systems.
6
6
Multitude of boards
7
7
-------------------
8
8
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
11
11
as many boards/modules as possible, but there may be limitations. Adafruit
12
12
Feather HUZZAH board is taken as a reference board for the port (for example,
13
13
testing 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,
18
18
following design and implementation decision were made:
19
19
20
20
* 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.
23
23
We also encourage users of various boards to share this mapping via MicroPython
24
24
forum, with the idea to collect community-maintained reference materials
25
25
eventually.
@@ -37,10 +37,10 @@ Technical specifications and SoC datasheets
37
37
38
38
The datasheets and other reference material for ESP8266 chip are available
39
39
from 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,
41
41
operating modes, internal functioning, etc.
42
42
43
- For your convinience , some of technical specifications are provided below:
43
+ For your convenience , some of technical specifications are provided below:
44
44
45
45
* Architecture: Xtensa lx106
46
46
* CPU frequency: 80MHz overclockable to 160MHz
@@ -64,13 +64,13 @@ Boot process
64
64
On boot, MicroPython EPS8266 port executes ``_boot.py `` script from internal
65
65
frozen modules. It mounts filesystem in FlashROM, or if it's not available,
66
66
performs 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
68
68
for end users (even if you build from source, please refrain from changes to
69
69
it; customization of early boot process is available only to advanced users
70
70
and developers, who can diagnose themselves any issues arising from
71
71
modifying the standard process).
72
72
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
74
74
version of this file is created during first-time module set up and by
75
75
defaults starts up a WebREPL daemon to handle incoming connections. This
76
76
file is customizable by end users (for example, you may want to disable
@@ -89,5 +89,5 @@ the following in ``main.py``::
89
89
import my_app
90
90
my_app.main()
91
91
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
93
93
allow to install multiple applications on a board, and switch among them.
0 commit comments