diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-04-24 19:31:02 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-04-24 19:31:02 +0300 |
| commit | ada654bac13b4e015c01996ab5bc2c9c72f7fd34 (patch) | |
| tree | 9ba65e258a80423f67950367807c2572f977ddf8 /Software | |
| parent | 4b95b6c19bdf18e50068285b3b0a8a8ab0a7b4ce (diff) | |
| parent | ebcb9ce27131e4bbd14c96b5f897a67bc752aaeb (diff) | |
| download | Tango-ada654bac13b4e015c01996ab5bc2c9c72f7fd34.tar.gz Tango-ada654bac13b4e015c01996ab5bc2c9c72f7fd34.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c b/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c index 97489f431..b0a1945db 100644 --- a/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c +++ b/Software/Embedded_SW/Embedded/Modules/Diagnostics/DiagnosticActions.c @@ -243,6 +243,12 @@ uint32_t SetDigitalOutRequestRequestFunc(MessageContainer* requestContainer) /* case INTERFACE_IOS__GPO_LED4: DataUpdated = request->value; break;*/ + case INTERFACE_IOS__GPO_BLOWER_PWM: + if (request->value == true) + Control_Dryer_Fan(START,75); + else + Control_Dryer_Fan(STOP, 0); + break; case INTERFACE_IOS__VALVE_WASTE_TANK: if (request->value == true) Valve_Set(VALVE_MIXCHIP_WASTECH,1); |
