aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2020-05-12 09:53:39 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2020-05-12 09:53:39 +0300
commitd79f3a623044d0a57e24aa4abe51faa0223160ec (patch)
tree75b50c294d94a329bed3a6697d2ae9d6060bf050 /Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c
parent85d26ce565ad8e65d6755010fb4ed14890944091 (diff)
parentc925d1a37aab06e5dc8073eee42a52252f68f58b (diff)
downloadTango-d79f3a623044d0a57e24aa4abe51faa0223160ec.tar.gz
Tango-d79f3a623044d0a57e24aa4abe51faa0223160ec.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c')
-rw-r--r--Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c b/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c
index cdcecaa2a..19392c754 100644
--- a/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c
+++ b/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c
@@ -197,12 +197,18 @@
}
else
{
- WHS_Set_SetPoint_Q_value(headairflow/2);
- Turn_the_Blower_On();//Turn on with the Default_Voltage
- if (BlowerCfg.heatingvoltage)
- Control_Voltage_To_Blower(BlowerCfg.heatingvoltage);
+ if(Head_Type > HEAD_TYPE_SYLKO_WITHOUT_CARD)
+ {
+ WHS_Set_SetPoint_Q_value(headairflow/2);
+ }
else
- Control_Voltage_To_Blower(BlowerCfg.voltage-500);
+ {
+ Turn_the_Blower_On();//Turn on with the Default_Voltage
+ if (BlowerCfg.heatingvoltage)
+ Control_Voltage_To_Blower(BlowerCfg.heatingvoltage);
+ else
+ Control_Voltage_To_Blower(BlowerCfg.voltage-500);
+ }
Control_Dryer_Fan(STOP,75);//use START or STOP, 0 - 100%
LoadStages++;
ThreadLoadStateMachine(LoadStages);