From 76845dc21fd587cfefd886e2539b3202d00564f6 Mon Sep 17 00:00:00 2001 From: Shlomo Hecht Date: Sun, 26 Apr 2020 15:38:07 +0300 Subject: move dispenser EEPROM handling to stubs. add whs eeprom handling draft --- Software/Embedded_SW/Embedded/Communication/Container.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Software/Embedded_SW/Embedded/Communication/Container.c') 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"); -- cgit v1.3.1