diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-09-30 13:58:41 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-09-30 13:58:41 -0400 |
commit | 3cdf4ddf0a67646131e320f0556f619783a17469 (patch) | |
tree | a793808df8d602970653fe4445d0f114fcd3d0c3 /tests/generated.cpp | |
parent | 0a3e354c3d81866e1a755367ab5592b3ced868bb (diff) |
Update test JSON filesneedlefish_13.93.0needlefish/13.93.0marlin_12.93.0marlin_12.92.0marlin_12.91.0marlin_12.90.1marlin_12.90.0marlin/12.93.0marlin/12.92.0marlin/12.91.0marlin/12.90.1marlin/12.90.0lamprey_11.92.0lamprey_11.91.0lamprey/11.92.0lamprey/11.91.0koi_10.93.0koi_10.92.0koi_10.91.0koi/10.93.0koi/10.92.0koi/10.91.013.93.012.93.012.92.012.91.012.90.112.90.011.92.011.91.010.93.010.92.010.91.0
Thomas Walzer pointed out that the JSON files in the tests
subdirectory no longer worked with the generator; the now required
version field has been added to them and the sample generated output
updated.
Bug-AGL: SPEC-3551
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I667a0b08b41e488e7bca8582902fa5be08da5acb
Diffstat (limited to 'tests/generated.cpp')
-rw-r--r-- | tests/generated.cpp | 197 |
1 files changed, 0 insertions, 197 deletions
diff --git a/tests/generated.cpp b/tests/generated.cpp deleted file mode 100644 index 9768860..0000000 --- a/tests/generated.cpp +++ /dev/null @@ -1,197 +0,0 @@ -#include "application.hpp" -#include "can/can-decoder.hpp" - - -// >>>>> handlers.cpp >>>>> -#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 -} - -// <<<<< handlers.cpp <<<<< - -application_t::application_t() - : can_message_set_{0, "example", 2, 2, 7, 1, 3} - , can_message_definition_ - { - { - can_message_definition_t(0, "can0", 0x128, can_message_format_t::STANDARD, frequency_clock_t(0.00000f), true), - can_message_definition_t(0, "can0", 0x813, can_message_format_t::STANDARD, frequency_clock_t(0.00000f), true) - } - } - , can_signals_ - { - { - { - 0, - 0, - "engine_speed", - 12, - 8, - 1.00000, - 0, - 0, - 0, - frequency_clock_t(15.0000f), - true, - false, - { - }, - false, - nullptr, - nullptr, - false - }, - { - 0, - 0, - "GearshiftPosition", - 41, - 3, - 1.00000, - 0, - 0, - 0, - frequency_clock_t(0.00000f), - true, - false, - { - {1, "FIRST"}, - {4, "FOURTH"}, - {6, "NEUTRAL"}, - {5, "REVERSE"}, - {2, "SECOND"}, - {3, "THIRD"} - }, - false, - nullptr, - nullptr, - false - }, - { - 0, - 0, - "SteeringWheelAngle", - 52, - 12, - 0.153920, - 0, - 0, - 0, - frequency_clock_t(0.00000f), - true, - false, - { - }, - false, - handleUnsignedSteeringWheelAngle, - nullptr, - false - }, - { - 0, - 0, - "steering_wheel_angle_error", - 44, - 12, - 1.00000, - 0, - 0, - 0, - frequency_clock_t(0.00000f), - true, - false, - { - }, - false, - ignoreDecoder, - nullptr, - false - }, - { - 0, - 0, - "steering_angle_sign", - 52, - 12, - 1.00000, - 0, - 0, - 0, - frequency_clock_t(0.00000f), - true, - false, - { - }, - false, - ignoreDecoder, - nullptr, - false - } - }, - { - { - 0, - 1, - "abc", - 52, - 12, - 0.153920, - 0, - 0, - 0, - frequency_clock_t(0.00000f), - true, - false, - { - }, - false, - handleUnsignedSteeringWheelAngle, - nullptr, - false - }, - { - 0, - 1, - "def", - 52, - 12, - 1.00000, - 0, - 0, - 0, - frequency_clock_t(0.00000f), - true, - false, - { - }, - false, - decoder_t::ignoreDecoder, - nullptr, - false - } - } - } - //, obd2_signals_{/*...*/} -{ -} - - |