diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2020-11-05 08:38:35 +0200 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2020-11-05 08:38:35 +0200 |
| commit | 59eae61ea085fce516b4985b79fb4361af80b50f (patch) | |
| tree | cae3abd83e32167035d121ad1077fcc044a61008 /Software/Embedded_SW/Embedded/Modules/Heaters | |
| parent | c2098e8720e2cf3cda17831b76fbb82147950a32 (diff) | |
| download | Tango-59eae61ea085fce516b4985b79fb4361af80b50f.tar.gz Tango-59eae61ea085fce516b4985b79fb4361af80b50f.zip | |
blowers
Diffstat (limited to 'Software/Embedded_SW/Embedded/Modules/Heaters')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c | 4 |
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 9c8ab1e12..69ac7fbb3 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 < 0.1) { + if (currentFlow < 1.0) { 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 < 0.1) { + if (currentFlow < 1.0) { 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); |
