Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit cba7bdb

Browse files
authored
Fix Codespell complaints
1 parent 909fa86 commit cba7bdb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ Supposing the STM32 stm32 core version is 2.3.0. These files must be copied into
449449
- `~/.arduino15/packages/STM32/hardware/stm32/2.3.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h` for Nucleo-144 STM32F7.
450450

451451
Whenever a new version is installed, remember to copy this file into the new version directory. For example, new version is x.yy.zz,
452-
theses files must be copied into the corresponding directory:
452+
these files must be copied into the corresponding directory:
453453

454454
- `~/.arduino15/packages/STM32/hardware/stm32/x.yy.zz/system/STM32F4xx/stm32f4xx_hal_conf_default.h`
455455
- `~/.arduino15/packages/STM32/hardware/stm32/x.yy.zz/system/STM32F7xx/stm32f7xx_hal_conf_default.h
@@ -465,7 +465,7 @@ Supposing the STM32 stm32 core version is 2.3.0. These files must be copied into
465465
- `~/.arduino15/packages/STM32/hardware/stm32/2.3.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/NUCLEO_L053R8/variant.h` for Nucleo-64 NUCLEO_L053R8.
466466

467467
Whenever a new version is installed, remember to copy this file into the new version directory. For example, new version is x.yy.zz,
468-
theses files must be copied into the corresponding directory:
468+
these files must be copied into the corresponding directory:
469469

470470
- `~/.arduino15/packages/STM32/hardware/stm32/x.yy.zz/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/NUCLEO_F767ZI/variant.h`
471471
- `~/.arduino15/packages/STM32/hardware/stm32/x.yy.zz/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/NUCLEO_L053R8/variant.h`
@@ -929,7 +929,7 @@ void check_status()
929929
static unsigned long checkstatus_timeout = 0;
930930

931931
#define HEARTBEAT_INTERVAL 10000L
932-
// Print hearbeat every HEARTBEAT_INTERVAL (10) seconds.
932+
// Print heartbeat every HEARTBEAT_INTERVAL (10) seconds.
933933
if ((millis() > checkstatus_timeout) || (checkstatus_timeout == 0))
934934
{
935935
heartBeatPrint();
@@ -939,7 +939,7 @@ void check_status()
939939

940940
void enterConfigPortal()
941941
{
942-
//Local intialization. Once its business is done, there is no need to keep it around
942+
//Local initialization. Once its business is done, there is no need to keep it around
943943
ESP_AT_WiFiManager ESP_AT_wiFiManager;
944944

945945
ESP_AT_wiFiManager.setDebugOutput(true);

platformio/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ lib_deps =
5454
build_flags =
5555
; set your debug output (default=Serial)
5656
; -D DEBUG_ESP_PORT=Serial
57-
; comment the folowing line to enable WiFi debugging
57+
; comment the following line to enable WiFi debugging
5858
; -D NDEBUG
5959

6060
[env:ESP8266]

0 commit comments

Comments
 (0)