aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Modules/General
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-05-18 17:19:06 +0300
committerShlomo Hecht <shlomo@twine-s.com>2020-05-18 17:19:06 +0300
commit049be36c736eb88d9030c2ce720863375ce134cc (patch)
tree43669f67594784cae0612977ee76f6c4bc62a660 /Software/Embedded_SW/Embedded/Modules/General
parent9f6741e51a0145b684b182cb8a01ca32ee77d0a5 (diff)
downloadTango-049be36c736eb88d9030c2ce720863375ce134cc.tar.gz
Tango-049be36c736eb88d9030c2ce720863375ce134cc.zip
cleaning job bug, prevent reporting dispenser homing for auto homing. drier fan / whs fan alarms
Diffstat (limited to 'Software/Embedded_SW/Embedded/Modules/General')
-rw-r--r--Software/Embedded_SW/Embedded/Modules/General/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/General/process.c b/Software/Embedded_SW/Embedded/Modules/General/process.c
index fafdbed65..8c0bc3e73 100644
--- a/Software/Embedded_SW/Embedded/Modules/General/process.c
+++ b/Software/Embedded_SW/Embedded/Modules/General/process.c
@@ -327,7 +327,7 @@ void ProcessRequestFunc(MessageContainer* requestContainer)
if (status == 0)
status = HandleProcessParameters(ProcessParams,true);
- if (status)
+ if ((status)&&(status !=ERROR_CODE__GENERAL_ERROR))
{
responseContainer.has_error = true;
responseContainer.error = (ErrorCode)status;