Skip to content

Commit

Permalink
Fixed small typos. (#2674)
Browse files Browse the repository at this point in the history
  • Loading branch information
slaff authored Oct 12, 2023
1 parent b153bc8 commit 6591e72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sming/Arch/Rp2040/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ If core 1 code attempts to access flash during these periods the system will har
Floating-point support requires use of routines in flash memory.
Integer operations should all be safe to use.

If unexplained crashes are occuring then check the build output files (in out/Rp2040/debug/build)
If unexplained crashes are occurring then check the build output files (in out/Rp2040/debug/build)
or use a debugger to identify any errant code running from flash.

A typical use for core #1 might be to perform processing of some kind, such as processing data sampled
Expand Down
2 changes: 1 addition & 1 deletion Sming/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ mainmenu "${SMING_SOC} Sming Framework Configuration"
bool "Enable command executor functionality"
default y
help
This facilty requires documenting!
This facility requires documenting!

config TASK_QUEUE_LENGTH
int "Length of task queue"
Expand Down
2 changes: 1 addition & 1 deletion tests/HostTests/modules/ArduinoString.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class ArduinoStringTest : public TestGroup
REQUIRE(hello2 == "hello");
}

TEST_CASE("String concantenation", "[core][String]")
TEST_CASE("String concatenation", "[core][String]")
{
String str;
REQUIRE(str.length() == 0);
Expand Down

0 comments on commit 6591e72

Please sign in to comment.