diff options
| author | Avi Levkovich <avi@twine-s.com> | 2018-05-23 17:47:48 +0300 |
|---|---|---|
| committer | Avi Levkovich <avi@twine-s.com> | 2018-05-23 17:47:48 +0300 |
| commit | aa23dbfc5b2610871f3627d34439b4c9aaa59bed (patch) | |
| tree | a8eee32ce1f5ab1273945a7d61a1852dcf0fb495 /Software/Embedded_SW/Embedded | |
| parent | c62e70f59cd337aa71ddaa00a5259d8bdf436275 (diff) | |
| download | Tango-aa23dbfc5b2610871f3627d34439b4c9aaa59bed.tar.gz Tango-aa23dbfc5b2610871f3627d34439b4c9aaa59bed.zip | |
update container.c
Diffstat (limited to 'Software/Embedded_SW/Embedded')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Communication/Container.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Software/Embedded_SW/Embedded/Communication/Container.c b/Software/Embedded_SW/Embedded/Communication/Container.c index db4000f77..dd9f74c9a 100644 --- a/Software/Embedded_SW/Embedded/Communication/Container.c +++ b/Software/Embedded_SW/Embedded/Communication/Container.c @@ -24,6 +24,8 @@ #include "Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.h" #include "Modules/Stubs_Handler/Stub_TivaReg.h" #include "Modules/Stubs_Handler/Stub_Dancer.h" +#include "Modules/Stubs_Handler/Stub_SpeedSensor.h" +#include "Modules/Stubs_Handler/Stub_IntADC.h" @@ -204,7 +206,9 @@ void receive_callback(char* buffer, size_t length) case MESSAGE_TYPE__StubSpeedSensorRequest: Stub_SpeedSensorRequest(requestContainer); break; - + case MESSAGE_TYPE__StubIntADCReadRequest: + Stub_IntADCReadRequest(requestContainer); + break; default: //unsupported message type !! break; |
