aboutsummaryrefslogtreecommitdiffstats
path: root/tests/handlers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/handlers.cpp')
-rw-r--r--tests/handlers.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/handlers.cpp b/tests/handlers.cpp
new file mode 100644
index 0000000..4316f15
--- /dev/null
+++ b/tests/handlers.cpp
@@ -0,0 +1,22 @@
+#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
+}