summaryrefslogtreecommitdiffstats
path: root/CAN-binder/examples/basic/handlers.cpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-06-20 10:24:05 +0000
committerRomain Forlot <romain.forlot@iot.bzh>2017-06-20 10:24:05 +0000
commit32e25cbca210a359b09768537b6f443fe90a3070 (patch)
tree3309794c15d8a8f8e9c1c08cad072ee1378813ba /CAN-binder/examples/basic/handlers.cpp
parent76c43dec62b2e21cd6446360c00d4fe6b437533f (diff)
Separation Generator to a dedicated repo
Change-Id: Id94831651c3266861435272a6e36c7884bef2c45 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/examples/basic/handlers.cpp')
-rw-r--r--CAN-binder/examples/basic/handlers.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/CAN-binder/examples/basic/handlers.cpp b/CAN-binder/examples/basic/handlers.cpp
deleted file mode 100644
index 4316f15f..00000000
--- a/CAN-binder/examples/basic/handlers.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "can/canread.h"
-
-using openxc::can::read::publishNumericalMessage;
-
-void handleSteeringWheelMessage(CanMessage* message,
- CanSignal* signals, int signalCount, Pipeline* pipeline) {
- publishNumericalMessage("latitude", 42.0, pipeline);
-}
-
-openxc_DynamicField handleInverted(CanSignal* signal, CanSignal* signals,
- int signalCount, float value, bool* send) {
- return openxc::payload::wrapNumber(value * -1);
-}
-
-void initializeMyStuff() { }
-
-void initializeOtherStuff() { }
-
-void myLooper() {
- // this function will be called once each time through the main loop, after
- // all CAN message processing has been completed
-}