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-02-17 17:56:27 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-02-17 17:56:27 +0300
commit41390be8ea6d61f04c6454172c5b4ae340eb9c48 (patch)
tree426eef6673c5fce9fad51c7c9e94173844eff88d /src/Fans/LocalFan.cpp
parent1c0a8ef307f97042af12a3a82a92a1caa2de6c21 (diff)
Fixed issue with fan tachos only reporting RPM briefly
Diffstat (limited to 'src/Fans/LocalFan.cpp')
-rw-r--r--src/Fans/LocalFan.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Fans/LocalFan.cpp b/src/Fans/LocalFan.cpp
index 72c2122b..44fcd9da 100644
--- a/src/Fans/LocalFan.cpp
+++ b/src/Fans/LocalFan.cpp
@@ -188,10 +188,7 @@ bool LocalFan::UpdateFanConfiguration(const StringRef& reply) noexcept
bool LocalFan::Check() noexcept
{
- if (sensorsMonitored.IsNonEmpty() || blipping)
- {
- InternalRefresh();
- }
+ InternalRefresh();
return sensorsMonitored.IsNonEmpty() && lastVal != 0.0;
}