From 0a1c6b4b11e09c25387782f6dd9498c67bb3bff9 Mon Sep 17 00:00:00 2001 From: Shlomo Hecht Date: Sun, 3 Feb 2019 13:00:47 +0200 Subject: file system improvement --- Software/Embedded_SW/Embedded/Communication/Container.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Software/Embedded_SW/Embedded/Communication') 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; -- cgit v1.3.1