diff options
| author | Ronen Sberlo <ronen.s@twine-s.com> | 2020-11-04 12:20:59 +0200 |
|---|---|---|
| committer | Ronen Sberlo <ronen.s@twine-s.com> | 2020-11-04 12:20:59 +0200 |
| commit | dcdef4f8f4041a22dbfa9a09075a8ba51bb019ac (patch) | |
| tree | 776bfe7c512a048b237ab3cfd877c7355c6d39e9 /Software/Embedded_SW | |
| parent | 975f7174c6cd52882239ff2420300f151f3603e7 (diff) | |
| download | Tango-dcdef4f8f4041a22dbfa9a09075a8ba51bb019ac.tar.gz Tango-dcdef4f8f4041a22dbfa9a09075a8ba51bb019ac.zip | |
change fan too low alarm level
Diffstat (limited to 'Software/Embedded_SW')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/General/process.c | 2 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/General/process.c b/Software/Embedded_SW/Embedded/Modules/General/process.c index eef1d6985..aa9419491 100644 --- a/Software/Embedded_SW/Embedded/Modules/General/process.c +++ b/Software/Embedded_SW/Embedded/Modules/General/process.c @@ -41,7 +41,7 @@ double dryerairflow = 5.0; double pressurebuildup = 0; double dryerzone1temp = 0; int32_t tableindex = 0; -double headBlowersFlow[2] = {1.0,1.0}; +double headBlowersFlow[2] = {0.0,0.0}; double dryerbufferMeters = 0; double dryerbufferCentimeters = 0; diff --git a/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c b/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_Blowers.c index 69ac7fbb3..9c8ab1e12 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); |
