aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Modules
diff options
context:
space:
mode:
authorRonen Sberlo <ronen.s@twine-s.com>2020-11-05 17:42:12 +0200
committerRonen Sberlo <ronen.s@twine-s.com>2020-11-05 17:42:12 +0200
commit494359dd2d405c8c7d7ffbecb2dbde69134f30dd (patch)
tree11102cde0ec41be55b167ae99fd51b2b505e8993 /Software/Embedded_SW/Embedded/Modules
parent2f01062dca5a8e1bb9388cd4420d39125ebd3561 (diff)
downloadTango-494359dd2d405c8c7d7ffbecb2dbde69134f30dd.tar.gz
Tango-494359dd2d405c8c7d7ffbecb2dbde69134f30dd.zip
lost in merge
Diffstat (limited to 'Software/Embedded_SW/Embedded/Modules')
-rw-r--r--Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c b/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c
index 59a0aee51..c9565cf13 100644
--- a/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c
+++ b/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c
@@ -280,7 +280,7 @@ void ArcHeadAlarms(void)
AlarmHandlingSetAlarm(EVENT_TYPE__DYEING_HEAD_BLOWER_1_FLOW_TOO_HIGH, false);
count5 = (count5 < 0)?(0):(count5);
}
- if (currentFlow < 1.0) {
+ if (currentFlow < 0.1) {
if (++count6 == ARC_ALARM_LIMIT)
AlarmHandlingSetAlarm(EVENT_TYPE__DYEING_HEAD_BLOWER_1_FLOW_TOO_LOW, true);
count6 = (count6 > ARC_ALARM_LIMIT)?(ARC_ALARM_LIMIT):(count6);
@@ -300,7 +300,7 @@ void ArcHeadAlarms(void)
AlarmHandlingSetAlarm(EVENT_TYPE__DYEING_HEAD_BLOWER_2_FLOW_TOO_HIGH, false);
count7 = (count7 < 0)?(0):(count7);
}
- if (currentFlow < 1.0) {
+ if (currentFlow < 0.1) {
if (++count8 == ARC_ALARM_LIMIT)
AlarmHandlingSetAlarm(EVENT_TYPE__DYEING_HEAD_BLOWER_2_FLOW_TOO_LOW, true);
count8 = (count8 > ARC_ALARM_LIMIT)?(ARC_ALARM_LIMIT):(count8);