diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-02-07 18:00:49 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-02-07 18:00:49 +0200 |
| commit | 85be4860a445cd2cb5dcc01a582fbea5fe21c200 (patch) | |
| tree | 91fc526021912d78d37a22273e71e50fcddc5c3f /Software/Embedded_SW/Embedded/Communication | |
| parent | 340de72c8da0c0a5a661664f7fa26f756e43a15a (diff) | |
| parent | 5a3c7560c32ad3346fa2648466e9791c8bebf2aa (diff) | |
| download | Tango-85be4860a445cd2cb5dcc01a582fbea5fe21c200.tar.gz Tango-85be4860a445cd2cb5dcc01a582fbea5fe21c200.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Embedded_SW/Embedded/Communication')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Communication/Container.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Software/Embedded_SW/Embedded/Communication/Container.c b/Software/Embedded_SW/Embedded/Communication/Container.c index ba1f8eea9..bb6b82743 100644 --- a/Software/Embedded_SW/Embedded/Communication/Container.c +++ b/Software/Embedded_SW/Embedded/Communication/Container.c @@ -383,6 +383,12 @@ void receive_callback(char* buffer, size_t length) case MESSAGE_TYPE__FileChunkUploadRequest: FileChunkUploadRequestFunc(requestContainer); break; + case MESSAGE_TYPE__FileDownloadRequest: + FileDownloadRequestFunc(requestContainer); + break; + case MESSAGE_TYPE__FileChunkDownloadRequest: + FileChunkDownloadRequestFunc(requestContainer); + break; case MESSAGE_TYPE__ExecuteProcessRequest: ExecuteProcessRequestFunc(requestContainer); break; |
