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>2020-03-10 15:33:52 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-03-10 15:33:52 +0300
commit24f99490aa2be4fb14f7aeee454ede55e3dfb919 (patch)
tree4c1d18f73679fea7748e34d6d59acc70fd77fbcb /src/RepRap.h
parent5de9c86f303c680a41f4e7692014226b47ccf181 (diff)
Implemented seqs.directories, seqs.heat, seqs.inputs, seqs.job
Diffstat (limited to 'src/RepRap.h')
-rw-r--r--src/RepRap.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/RepRap.h b/src/RepRap.h
index bcc151ad..f08b1219 100644
--- a/src/RepRap.h
+++ b/src/RepRap.h
@@ -182,7 +182,11 @@ public:
void KickHeatTaskWatchdog() noexcept { heatTaskIdleTicks = 0; }
void BoardsUpdated() noexcept { ++boardsSeq; }
+ void DirectoriesUpdated() noexcept { ++directoriesSeq; }
void FansUpdated() noexcept { ++fansSeq; }
+ void HeatUpdated() noexcept { ++heatSeq; }
+ void InputsUpdated() noexcept { ++inputsSeq; }
+ void JobUpdated() noexcept { ++jobSeq; }
void ToolsUpdated() noexcept { ++toolsSeq; }
protected: