aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-05-12 08:21:14 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-05-12 08:21:14 +0300
commitc925d1a37aab06e5dc8073eee42a52252f68f58b (patch)
treebfddb13fa508447fa4cd77db72ead8621da7354d /Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c
parentc101fe5354d7510e1f48ecc297a892e7735d73ca (diff)
parent8d04df9e07cd0a4065c9c7db7a8bd385320d5535 (diff)
downloadTango-c925d1a37aab06e5dc8073eee42a52252f68f58b.tar.gz
Tango-c925d1a37aab06e5dc8073eee42a52252f68f58b.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);