From e8c14d2baa8841f13beefaa1fb662a280ea8eb96 Mon Sep 17 00:00:00 2001 From: Arthur Guyader Date: Fri, 13 Dec 2019 15:23:27 +0100 Subject: decoder: Add new decoders: ascii, date, time Change-Id: I392bff2c1f4062aee186875335786fcda9cc0649 Signed-off-by: Arthur Guyader Signed-off-by: Romain Forlot --- low-can-binding/can/can-decoder.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'low-can-binding/can/can-decoder.hpp') diff --git a/low-can-binding/can/can-decoder.hpp b/low-can-binding/can/can-decoder.hpp index 2f7823ad..fd246f3c 100644 --- a/low-can-binding/can/can-decoder.hpp +++ b/low-can-binding/can/can-decoder.hpp @@ -32,6 +32,9 @@ public: static openxc_DynamicField decode_ignore(signal_t& signal, std::shared_ptr message, bool* send); static openxc_DynamicField decode_noop(signal_t& signal, std::shared_ptr message, bool* send); static openxc_DynamicField decode_bytes(signal_t& signal, std::shared_ptr message, bool* send); + static openxc_DynamicField decode_ascii(signal_t& signal, std::shared_ptr message, bool* send); + static openxc_DynamicField decode_date(signal_t& signal, std::shared_ptr message, bool* send); + static openxc_DynamicField decode_time(signal_t& signal, std::shared_ptr message, bool* send); static openxc_DynamicField translate_signal(signal_t& signal, std::shared_ptr message, bool* send); -- cgit 1.2.3-korg