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>2021-11-01 20:29:52 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-11-01 20:29:52 +0300
commite9e554aad66542a896ed316f05cc271461a2d4de (patch)
treecc1b6c9125a26cae0a4445d5a64fdbefe6796774 /src/Platform
parente7892b8a2d4609a687fe9acde367fe2ce07e33e2 (diff)
Added size of TaskBase to M122 P105 report
Diffstat (limited to 'src/Platform')
-rw-r--r--src/Platform/Platform.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index 086daf08..378b8280 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -2240,11 +2240,11 @@ GCodeResult Platform::DiagnosticTest(GCodeBuffer& gb, const StringRef& reply, Ou
case (unsigned int)DiagnosticTestType::PrintObjectSizes:
reply.printf(
- "DDA %u, DM %u, MS %u, Tool %u, GCodeBuffer %u, heater %u"
+ "Task %u, DDA %u, DM %u, MS %u, Tool %u, GCodeBuffer %u, heater %u"
#if HAS_NETWORKING
", HTTP resp %u, FTP resp %u, Telnet resp %u"
#endif
- , sizeof(DDA), sizeof(DriveMovement), sizeof(MoveSegment), sizeof(Tool), sizeof(GCodeBuffer), sizeof(Heater)
+ , sizeof(TaskBase), sizeof(DDA), sizeof(DriveMovement), sizeof(MoveSegment), sizeof(Tool), sizeof(GCodeBuffer), sizeof(Heater)
#if HAS_NETWORKING
, sizeof(HttpResponder), sizeof(FtpResponder), sizeof(TelnetResponder)
#endif