diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2019-02-05 14:50:38 +0200 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2019-02-05 14:50:38 +0200 |
| commit | d723bb19742e1522c5859fba5ea5a75b5e902ac1 (patch) | |
| tree | 212b4a02b4a8bb0bfffc9a621061305e82438cb5 /Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c | |
| parent | ec8a06ff2b7dbf10fa6aebb25b1ed5be18faed80 (diff) | |
| download | Tango-d723bb19742e1522c5859fba5ea5a75b5e902ac1.tar.gz Tango-d723bb19742e1522c5859fba5ea5a75b5e902ac1.zip | |
IDS bug fix (microstepping) #217 solved
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c index a12c02867..ceb341c38 100644 --- a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c +++ b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.c @@ -49,9 +49,9 @@ FIL *DownloadFileHandle = 0; //the system supports a single active file char FileHandleChar[5]; char ErrorMsg[100]; #define MAX_CHUNK_LENGTH 2000 -int FileLength = 0; -int FileReceivedLength = 0; -int FileSentLength = 0; +uint32_t FileLength = 0; +uint32_t FileReceivedLength = 0; +uint32_t FileSentLength = 0; static char g_cCwdBuf[50] = "/"; uint32_t WrittenBytes = 0; uint32_t ReadBytes = 0; |
