From afcdb79c4162782ab2a048dd55938d9e959376d9 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Sun, 10 Nov 2019 19:17:18 +0100 Subject: [PATCH] can_message: add missing signature due to conflict Change-Id: Ib705ae7c500bb9d3abc863053943298c87896bd2 Signed-off-by: Romain Forlot --- low-can-binding/can/message/can-message.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/low-can-binding/can/message/can-message.hpp b/low-can-binding/can/message/can-message.hpp index 96adadbc..d3d8453c 100644 --- a/low-can-binding/can/message/can-message.hpp +++ b/low-can-binding/can/message/can-message.hpp @@ -49,6 +49,7 @@ class can_message_t : public message_t { uint32_t get_id() const; void set_id(const canid_t id); + bool is_correct_to_send(); static std::shared_ptr convert_from_frame(const canfd_frame& frame, size_t nbytes, uint64_t timestamp); struct canfd_frame convert_to_canfd_frame(); @@ -56,5 +57,7 @@ class can_message_t : public message_t { struct bcm_msg& get_bcm_msg(); void set_bcm_msg(struct bcm_msg bcm_msg); + struct can_frame convert_to_can_frame(); + bool is_set(); std::string get_debug_message(); }; -- 2.16.6