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 small typos. #2674

Merged
merged 1 commit into from
Oct 12, 2023
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/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
Loading