Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Platform/Tasks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform/Tasks.cpp b/src/Platform/Tasks.cpp
index 86ce172c..7d7c39e8 100644
--- a/src/Platform/Tasks.cpp
+++ b/src/Platform/Tasks.cpp
@@ -53,7 +53,7 @@ static Task<MainTaskStackWords> mainTask;
extern "C" [[noreturn]] void MainTask(void * pvParameters) noexcept;
// Idle task data
-constexpr unsigned int IdleTaskStackWords = 50; // currently we don't use the idle talk for anything, so this can be quite small
+constexpr unsigned int IdleTaskStackWords = 50; // currently we don't use the idle task for anything, so this can be quite small
static Task<IdleTaskStackWords> idleTask;
extern "C" void vApplicationGetIdleTaskMemory(StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize) noexcept