diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-12-04 11:39:33 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2020-01-09 16:25:36 +0100 |
commit | 400c1a26178870a1cc94cbcab44efa949e76e955 (patch) | |
tree | 1e0571ba449100da586155f37d8fd372b17a81b9 /low-can-binding/can/message-definition.hpp | |
parent | 24bb25c9f16ecace05b64142493dce596f5a9e37 (diff) |
msg_definition: integrate frame layout as a flag
Integrate frame layout as a flag instead of a separate boolean
Change-Id: I0fe32fd8a80238006ef89152af25001ecdf018c9
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding/can/message-definition.hpp')
-rw-r--r-- | low-can-binding/can/message-definition.hpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/low-can-binding/can/message-definition.hpp b/low-can-binding/can/message-definition.hpp index ab6b4be8..b0866d39 100644 --- a/low-can-binding/can/message-definition.hpp +++ b/low-can-binding/can/message-definition.hpp @@ -46,8 +46,6 @@ 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.*/ @@ -66,7 +64,6 @@ public: message_definition_t(const std::string bus, uint32_t id, uint32_t flags, - bool frame_layout_is_little, frequency_clock_t frequency_clock, bool force_send_changed, const vect_ptr_signal_t& signals); @@ -75,7 +72,6 @@ public: std::string name, uint32_t length, uint32_t flags, - bool frame_layout_is_little, frequency_clock_t frequency_clock, bool force_send_changed, const vect_ptr_signal_t& signals); |