aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-02-02 14:45:56 +0200
committerShlomo Hecht <shlomo@twine-s.com>2020-02-02 14:45:56 +0200
commite85cef461f9df5cd23aab2044e97dd89bbcd9627 (patch)
treea6e74e7ab0cd93f18cb4269706a75051794f5336 /Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
parent6eab4de02492bac0afdc371c03cf062fad2ad28c (diff)
downloadTango-e85cef461f9df5cd23aab2044e97dd89bbcd9627.tar.gz
Tango-e85cef461f9df5cd23aab2044e97dd89bbcd9627.zip
fix fpga update
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c')
-rw-r--r--Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
index 35f336627..89039d2a6 100644
--- a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
+++ b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c
@@ -102,11 +102,11 @@ uint32_t FileUploadRequestFunc(MessageContainer* requestContainer)
CommRxTaskHandle = Task_self();
Task_setPri(CommRxTaskHandle, 3);
// Report("Task_setPri", __FILE__, __LINE__, 4, RpWarning, (int)CommRxTaskHandle, 0);
- Report("FileUploadRequestFunc 2", __FILE__, __LINE__, msec_millisecondCounter, RpWarning, (int)0, 0);
+ //Report("FileUploadRequestFunc 2", __FILE__, __LINE__, msec_millisecondCounter, RpWarning, (int)0, 0);
Fresult = f_open(UploadFileHandle,request->path,FA_READ | FA_WRITE | FA_OPEN_ALWAYS | FA_CREATE_ALWAYS);
if (Fresult == FR_OK)
{
- Report("FileUploadRequestFunc 3", __FILE__, __LINE__, msec_millisecondCounter, RpWarning, (int)0, 0);
+ //Report("FileUploadRequestFunc 3", __FILE__, __LINE__, msec_millisecondCounter, RpWarning, (int)0, 0);
FileLength = request->length;
FileReceivedLength = 0;
REPORT_MSG (FileLength,"file upload request");