aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Communication/Container.c
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-04-26 15:38:07 +0300
committerShlomo Hecht <shlomo@twine-s.com>2020-04-26 15:38:07 +0300
commit76845dc21fd587cfefd886e2539b3202d00564f6 (patch)
tree38553f5e21eb410f30386be055cba39830045d5a /Software/Embedded_SW/Embedded/Communication/Container.c
parent257919304a46076138cd31d688323f80f3081f7f (diff)
downloadTango-76845dc21fd587cfefd886e2539b3202d00564f6.tar.gz
Tango-76845dc21fd587cfefd886e2539b3202d00564f6.zip
move dispenser EEPROM handling to stubs. add whs eeprom handling draft
Diffstat (limited to 'Software/Embedded_SW/Embedded/Communication/Container.c')
-rw-r--r--Software/Embedded_SW/Embedded/Communication/Container.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/Software/Embedded_SW/Embedded/Communication/Container.c b/Software/Embedded_SW/Embedded/Communication/Container.c
index c35b0ca45..cabac2f0c 100644
--- a/Software/Embedded_SW/Embedded/Communication/Container.c
+++ b/Software/Embedded_SW/Embedded/Communication/Container.c
@@ -484,9 +484,12 @@ void receive_callback(char* buffer, size_t length)
case MESSAGE_TYPE__StopThreadLoadingRequest:
StopThreadLoadingFunc(requestContainer);
break;
- case MESSAGE_TYPE__DispenserEEpromRequest:
+ case MESSAGE_TYPE__StubDispenserEEpromRequest:
DispenserEEpromRequestFunc(requestContainer);
break;
+ case MESSAGE_TYPE__StubWHSEEpromRequest:
+ WhsEEpromRequestFunc(requestContainer);
+ break;
default:
//unsupported message type !!
LOG_ERROR (requestContainer->type,"unsupported message type");