diff options
| author | Avi Levkovich <avi@twine-s.com> | 2019-01-27 14:41:51 +0200 |
|---|---|---|
| committer | Avi Levkovich <avi@twine-s.com> | 2019-01-27 14:41:51 +0200 |
| commit | c64b07d93d944a294df08cee553800a09757d6ec (patch) | |
| tree | 71ab5b00aa977d5848058d2ed65cfd5f0782062f /Software/Embedded_SW/Embedded/Communication | |
| parent | 9f678962afca4568589680a897f9f358a2b163d2 (diff) | |
| parent | 2fb4421e0d771ea84e744856dc56ebc7b713cd86 (diff) | |
| download | Tango-c64b07d93d944a294df08cee553800a09757d6ec.tar.gz Tango-c64b07d93d944a294df08cee553800a09757d6ec.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 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Software/Embedded_SW/Embedded/Communication/Container.c b/Software/Embedded_SW/Embedded/Communication/Container.c index d8379fa6b..ba1f8eea9 100644 --- a/Software/Embedded_SW/Embedded/Communication/Container.c +++ b/Software/Embedded_SW/Embedded/Communication/Container.c @@ -39,6 +39,7 @@ #include "Modules/Thread/Thread_ex.h" #include "Common/SWUpdate/FileSystem.h" +#include "Common/SWUpdate/FirmwareUpgrade.h" #include "Communication/CommunicationTask.h" #include "StateMachines/Printing/PrintingSTM.h" @@ -400,6 +401,12 @@ void receive_callback(char* buffer, size_t length) case MESSAGE_TYPE__GetFilesRequest: GetFilesRequestFunc(requestContainer); break; + case MESSAGE_TYPE__ActivateVersionRequest: + ActivateVersionRequestFunc(requestContainer); + break; + case MESSAGE_TYPE__ValidateVersionRequest: + ValidateVersionRequestFunc(requestContainer); + break; case MESSAGE_TYPE__StubMidTankPressureSensorRequest: Stub_MidTankPressureSensorRequest(requestContainer); break; |
