Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typos reported by codespell. #2717

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sming/Libraries/MFRC522/MFRC522.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ byte MFRC522::PCD_CommunicateWithPICC( byte command, ///< The command to execut
if (n & 0x01) { // Timer interrupt - nothing received in 25ms
return STATUS_TIMEOUT;
}
if (--i == 0) { // The emergency break. If all other condions fail we will eventually terminate on this one after 35.7ms. Communication with the MFRC522 might be down.
if (--i == 0) { // The emergency break. If all other conditions fail we will eventually terminate on this one after 35.7ms. Communication with the MFRC522 might be down.
return STATUS_TIMEOUT;
}
}
Expand Down
2 changes: 1 addition & 1 deletion Sming/Libraries/MFRC522/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ Troubleshooting
#. Check your pin settings/variables in the code, see `Pin Layout`_ .
#. Check your pin header soldering. Maybe you have cold solder joints.
#. Check voltage. Most breakouts work with 3.3V.
#. SPI only works with 3.3V, most breakouts seem 5V tollerant, but try a level shifter.
#. SPI only works with 3.3V, most breakouts seem 5V tolerant, but try a level shifter.
#. SPI does not like long connections. Try shorter connections.
#. SPI does not like prototyping boards. Try soldered connections.
#. According to reports #101, #126 and #131, there may be a problem with the soldering on the MFRC522 breakout. You could fix this on your own.
Expand Down
2 changes: 1 addition & 1 deletion Sming/Libraries/Ota/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This architecture-agnostic component adds support for Over-The-Air upgrades.

Usage
-----
1. Add ``COMPONENT_DEPENDS += Ota`` to your application componenent.mk file.
1. Add ``COMPONENT_DEPENDS += Ota`` to your application component.mk file.
2. Add these lines to your application::

#include <Ota/Manager.h>
Expand Down
2 changes: 1 addition & 1 deletion Sming/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ Component
---------

The purpose of a Component is to encapsulate related elements for
selective inclusion in a project, for easy sharing and re-use:
selective inclusion in a project, for easy sharing and reuse:

- **Shared Library** with associated header files
- **App Code** Source files to be compiled directly into the user’s
Expand Down
2 changes: 1 addition & 1 deletion docs/source/information/develop/ci.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ There are two mechanisms available.
GitHub Actions
~~~~~~~~~~~~~~

The ``library.yml`` re-useable workflow is provided, which takes care of these tasks:
The ``library.yml`` reusable workflow is provided, which takes care of these tasks:

- Checking in the library to test
- Checking in the Sming framework
Expand Down
4 changes: 2 additions & 2 deletions samples/HttpServer_WebSockets/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#
mainmenu "Sample Configuration"

menu "Command Hanler"
menu "Command Handler"
config ENABLE_CMD_HANDLER
bool "Enable command handler functionality"
default y
endmenu
endmenu
Loading