aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin Le Gall <corentin.legall@iot.bzh>2019-11-25 19:29:52 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2019-12-03 19:46:26 +0100
commit1cf6c83e46ebc8fb5c45359becf3ee7583e9f769 (patch)
tree99c320b6e69659e29835a21beedf831a32935a11
parent01bd3e12d223aeac1a4b4bfd873fc3cbb0cd0036 (diff)
message-def: Fix code to avoid warnings
Change-Id: I8ded9847a5923b3a78afc953551fc6daaf40b355 Signed-off-by: Corentin Le Gall <corentin.legall@iot.bzh>
-rw-r--r--low-can-binding/can/message-definition.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/low-can-binding/can/message-definition.hpp b/low-can-binding/can/message-definition.hpp
index 9d615ff0..ab6b4be8 100644
--- a/low-can-binding/can/message-definition.hpp
+++ b/low-can-binding/can/message-definition.hpp
@@ -46,11 +46,11 @@ private:
std::string name_; ///< name_ - J1939 PGN name
uint32_t length_; ///< length_ - Message data length in bytes. For J1939 message, this is the expected data size
uint32_t flags_; ///< format_ - the format of the message's ID.*/
+ bool frame_layout_is_little_; ///<frame_layout_is_little_ Defines if the can frame layout is little endian or big endian.
+ /// Default is true;
frequency_clock_t frequency_clock_; ///< clock_ - an optional frequency clock to control the output of this
/// message, if sent raw, or simply to mark the max frequency for custom
/// handlers to retrieve.*/
- bool frame_layout_is_little_; ///<frame_layout_is_little_ Defines if the can frame layout is little endian or big endian.
- /// Default is true;
bool force_send_changed_; ///< force_send_changed_ - If true, regardless of the frequency, it will send CAN
/// message if it has changed when using raw passthrough.*/
std::vector<uint8_t> last_value_; ///< last_value_ - The last received value of the message. Defaults to undefined.