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-12-13 20:14:31 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-12-13 20:14:31 +0300
commita72cf81b4b4fd22b464dff59c4ca08a3b1df38fd (patch)
tree1298bfa2a45d2098d91097208b87963181db8da3 /src/Platform/Platform.cpp
parent2133c443728f7ed9a1764697551f1d5ff4a42a42 (diff)
Bug fixes to event handling
Diffstat (limited to 'src/Platform/Platform.cpp')
-rw-r--r--src/Platform/Platform.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index cda05c8e..58dc2a2a 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -1756,7 +1756,8 @@ void Platform::Diagnostics(MessageType mtype) noexcept
ResetVoltageMonitors();
- StringHandle::Diagnostics(mtype);
+ StringHandle::Diagnostics(mtype, *this);
+ Event::Diagnostics(mtype, *this);
// Show the motor position and stall status
for (size_t drive = 0; drive < NumDirectDrivers; ++drive)