summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2017-05-29 10:08:14 +0300
committerVille Skyttä <ville.skytta@iki.fi>2017-05-29 11:36:05 +0300
commitca16c3821053e5bf2b87aeb10007f73f31dc1eac (patch)
tree28b394ba7ef2e107c5fb3112c7ba97f01b6915f1 /esp8266
parente5e49bedcb0ed353ee22ba99078301d9ccd87dbf (diff)
downloadmicropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.tar.gz
micropython-ca16c3821053e5bf2b87aeb10007f73f31dc1eac.zip
various: Spelling fixes
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/README.md2
-rw-r--r--esp8266/machine_rtc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/esp8266/README.md b/esp8266/README.md
index 897bb47377..d717d26fed 100644
--- a/esp8266/README.md
+++ b/esp8266/README.md
@@ -100,7 +100,7 @@ programming).
__WiFi__
-Initally, the device configures itself as a WiFi access point (AP).
+Initially, the device configures itself as a WiFi access point (AP).
- ESSID: MicroPython-xxxxxx (x’s are replaced with part of the MAC address).
- Password: micropythoN (note the upper-case N).
- IP address of the board: 192.168.4.1.
diff --git a/esp8266/machine_rtc.c b/esp8266/machine_rtc.c
index 019b705ba2..b17bcb2616 100644
--- a/esp8266/machine_rtc.c
+++ b/esp8266/machine_rtc.c
@@ -93,7 +93,7 @@ void pyb_rtc_set_us_since_2000(uint64_t nowus) {
int64_t delta = nowus - (((uint64_t)rtc_last_ticks * cal) >> 12);
// As the calibration value jitters quite a bit, to make the
- // clock at least somewhat practially usable, we need to store it
+ // clock at least somewhat practically usable, we need to store it
system_rtc_mem_write(MEM_CAL_ADDR, &cal, sizeof(cal));
system_rtc_mem_write(MEM_DELTA_ADDR, &delta, sizeof(delta));
};