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:
Diffstat (limited to 'src/Movement/Move.cpp')
-rw-r--r--src/Movement/Move.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Movement/Move.cpp b/src/Movement/Move.cpp
index 93486ac4..2c8678a1 100644
--- a/src/Movement/Move.cpp
+++ b/src/Movement/Move.cpp
@@ -376,10 +376,9 @@ void Move::Exit() noexcept
}
// We need to be woken when one of the following is true:
- // 1. If noMoveAvailable is true, when a new move becomes available.
- // 2. If moves are being executed and there are unprepared moves in the queue, when it is time to prepare more moves.
- // 3. If the queue was full and all moves in it were prepared and noMoveAvailable is false, when we have completed one or more moves.
- // 4. In order to implement idle timeout, we must wake up regularly anyway, say every half second
+ // 1. If moves are being executed and there are unprepared moves in the queue, when it is time to prepare more moves.
+ // 2. If the queue was full and all moves in it were prepared, when we have completed one or more moves.
+ // 3. In order to implement idle timeout, we must wake up regularly anyway, say every half second
if (!moveRead && nextPrepareDelay != 0)
{
TaskBase::Take(min<uint32_t>(nextPrepareDelay, 500));