aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-05-11 10:35:56 +0300
committerShlomo Hecht <shlomo@twine-s.com>2020-05-11 10:35:56 +0300
commit995fa3bfa4536e0462e42231328855d2e1a6bfda (patch)
tree17d67ff394831f04872dbb9ada9f053ace67f5c0
parent9e9c9e2358d0e054b1226f617e3be8456cc326a1 (diff)
downloadTango-995fa3bfa4536e0462e42231328855d2e1a6bfda.tar.gz
Tango-995fa3bfa4536e0462e42231328855d2e1a6bfda.zip
Version 1.4.6.25 release notes (pack 2)
-rw-r--r--Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c10
-rw-r--r--Software/Embedded_SW/Embedded/Software Release Notes.txt15
2 files changed, 18 insertions, 7 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
index 0fbe1cc0d..84d8fa725 100644
--- a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
+++ b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
@@ -199,14 +199,11 @@ uint32_t FileChunkUploadRequestFunc(MessageContainer* requestContainer)
//REPORT_MSG (FileReceivedLength,"file upload chunk");
if (FileReceivedLength == FileLength)
{
- REPORT_MSG (FileReceivedLength,"file upload ended successfully 111");
- STATUS_RED_LED_ON;
+ REPORT_MSG (FileReceivedLength,"file upload ended successfully");
f_close(ReceivedFileHandle);
my_free (UploadFileHandle);
UploadFileHandle = 0;
FileReceivedLength = 0;
- STATUS_RED_LED_OFF;
- REPORT_MSG (FileReceivedLength,"file upload ended successfully 222");
FileDone = true;
}
else
@@ -214,7 +211,6 @@ uint32_t FileChunkUploadRequestFunc(MessageContainer* requestContainer)
if (FileReceivedLength > FileLength)
{
REPORT_MSG (FileReceivedLength,"file upload too much data!");
- Task_setPri(CommRxTaskHandle, 9);
f_close(ReceivedFileHandle);
my_free (UploadFileHandle);
UploadFileHandle = 0;
@@ -241,9 +237,9 @@ uint32_t FileChunkUploadRequestFunc(MessageContainer* requestContainer)
SendCharsWithType(container_buffer, container_size,MESSAGE_TYPE__FileChunkUploadResponse);
if (FileDone == true)
{
- Semaphore_post(FFS_Sem);
Task_setPri(CommRxTaskHandle, 9);
- Report("Task_setPri", __FILE__, __LINE__, 9, RpWarning, (int)CommRxTaskHandle, 0);
+ Semaphore_post(FFS_Sem);
+ //Report("Task_setPri", __FILE__, __LINE__, 9, RpWarning, (int)CommRxTaskHandle, 0);
}
return OK;
}
diff --git a/Software/Embedded_SW/Embedded/Software Release Notes.txt b/Software/Embedded_SW/Embedded/Software Release Notes.txt
index 20bf32db7..389d0a790 100644
--- a/Software/Embedded_SW/Embedded/Software Release Notes.txt
+++ b/Software/Embedded_SW/Embedded/Software Release Notes.txt
@@ -1,3 +1,18 @@
+Embedded SW Release note - Version 1.4.6.25 - Pack 2
+=============================================================
+dispenser EEPROM read/write from stub
+power up interface - progress report and error codes
+job preparation (file analysis) in lower priority to avoid overheating in large files
+bug fix in millisec task
+diagnostics - waste level(in chiller temperature)
+dispenser/motor homing real progress report
+fix bugs in hw version support (discovered by Ori)
+improve heaters tracking
+improve thread loading error handling
+integrate new waste tank level info in the WHS module
+drivers: bug fixes, waste level and gas sensor, head type identification according to EEPROM, fix blower flow and control, whs gpio,
+
+
Embedded SW Release note - Version 1.4.6.21 - Pack 1++
=============================================================
File system improved