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:
authorDavid Crocker <dcrocker@eschertech.com>2022-08-12 13:52:19 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-08-12 15:11:29 +0300
commit7a8bc96e5f69739b2ff0ef74ec7248490dbb9b61 (patch)
treec743ec26c530f037404966d5119b794b03f673a7
parentb7af5540763a1a820b564319e9ac9407367a2b49 (diff)
Corrected a comment
-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