diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2020-09-06 15:24:39 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2020-09-06 15:24:39 +0300 |
| commit | dc3e9a8e3936f24d01d85652ff2fb9b8c320261c (patch) | |
| tree | d58239e55ba1eaf0a27788c0d20f004c72fa6355 /Software/Embedded_SW/Embedded/Communication/Container.c | |
| parent | b68b34d6247175678f76cc40bb60019685740dd9 (diff) | |
| download | Tango-dc3e9a8e3936f24d01d85652ff2fb9b8c320261c.tar.gz Tango-dc3e9a8e3936f24d01d85652ff2fb9b8c320261c.zip | |
some fixes in dispenser handling, implement setheaterstate, procedures and stubs updated
Diffstat (limited to 'Software/Embedded_SW/Embedded/Communication/Container.c')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Communication/Container.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Software/Embedded_SW/Embedded/Communication/Container.c b/Software/Embedded_SW/Embedded/Communication/Container.c index b14efbd55..307e4eecb 100644 --- a/Software/Embedded_SW/Embedded/Communication/Container.c +++ b/Software/Embedded_SW/Embedded/Communication/Container.c @@ -349,6 +349,9 @@ void receive_callback(char* buffer, size_t length) case MESSAGE_TYPE__StartEventsNotificationRequest: StartEventsNotificationRequestFunc(requestContainer); break; + case MESSAGE_TYPE__SetHeaterStateRequest: + SetHeaterStateRequestFunc(requestContainer); + break; case MESSAGE_TYPE__StopEventsNotificationRequest: StopEventsNotificationRequestFunc(requestContainer); break; |
