aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Common
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/Common
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/Common')
-rw-r--r--Software/Embedded_SW/Embedded/Common/report/reportInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/report/reportInit.c b/Software/Embedded_SW/Embedded/Common/report/reportInit.c
index 818e0d938..79bf3d9bd 100644
--- a/Software/Embedded_SW/Embedded/Common/report/reportInit.c
+++ b/Software/Embedded_SW/Embedded/Common/report/reportInit.c
@@ -314,7 +314,7 @@ uint32_t ReportInitMessage(MessageContainer* requestContainer)
StartDebugLogRequest* request = start_debug_log_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data);
ustrncpy (protobufToken, requestContainer->token,36);
DistributorHandle ReportHandle = ReportAddDistributor("ProtoBuf");
- CloseLogFile();
+ //CloseLogFile();
if (ReportHandle == NULL) status |= 0x8;
status |= ReportFunc(ReportResponseFunc , REPORT_ADD, ReportHandle);
start_debug_log_request__free_unpacked(request,NULL);
@@ -423,7 +423,7 @@ return OK;
void ReportStopReporting(void)
{
protobufToken[0] = 0;
- OpenLogFile();
+ //OpenLogFile();
}