diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2018-10-23 18:34:18 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2018-10-23 18:34:18 +0300 |
| commit | ddde99ac703d1e4ccfdea5030042fbf85dfcec38 (patch) | |
| tree | c73c95110f217aef15451668e8183f6f8fd59222 /Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.h | |
| parent | cf83283f25844b9b673b7adc9bb851bcf19a399d (diff) | |
| download | Tango-ddde99ac703d1e4ccfdea5030042fbf85dfcec38.tar.gz Tango-ddde99ac703d1e4ccfdea5030042fbf85dfcec38.zip | |
infrastructure for file system commands. rockers disabled
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.h')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.h b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.h new file mode 100644 index 000000000..4a76a0aad --- /dev/null +++ b/Software/Embedded_SW/Embedded/Common/SWUpdate/FileSystem.h @@ -0,0 +1,23 @@ +/* + * FileSystem.h + * + * Created on: Oct 23, 2018 + * Author: shlomo + */ + +#ifndef COMMON_SWUPDATE_FILESYSTEM_H_ +#define COMMON_SWUPDATE_FILESYSTEM_H_ + +uint32_t FileUploadRequestFunc(MessageContainer* requestContainer); +uint32_t FileChunkUploadRequestFunc(MessageContainer* requestContainer); +uint32_t ExecuteProcessRequestFunc(MessageContainer* requestContainer); +uint32_t KillProcessRequestFunc(MessageContainer* requestContainer); +uint32_t CreateRequestFunc(MessageContainer* requestContainer); +uint32_t DeleteRequestFunc(MessageContainer* requestContainer); +uint32_t GetStorageInfoRequestFunc(MessageContainer* requestContainer); +uint32_t GetFilesRequestFunc(MessageContainer* requestContainer); + + + + +#endif /* COMMON_SWUPDATE_FILESYSTEM_H_ */ |
