diff options
author | Arthur Guyader <arthur.guyader@iot.bzh> | 2019-12-15 16:15:28 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2020-01-09 16:25:36 +0100 |
commit | 439c289056564cc4723c249f2ba29100efc7d4f8 (patch) | |
tree | e2ad2004b5659c57e399a21ef9b29557a8a8165e /low-can-binding/can | |
parent | 466fa12ede042ea273828f801fbcab24196c4d60 (diff) |
signal_t : Remove attribute is_big_endian
It is not used in the actual context.
Change-Id: I6334ff9a037cec4f61deea56048b3109ad1362ab
Signed-off-by: Arthur Guyader <arthur.guyader@iot.bzh>
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding/can')
-rwxr-xr-x | low-can-binding/can/signals.cpp | 7 | ||||
-rwxr-xr-x | low-can-binding/can/signals.hpp | 3 |
2 files changed, 0 insertions, 10 deletions
diff --git a/low-can-binding/can/signals.cpp b/low-can-binding/can/signals.cpp index da8df988..ac2b26c2 100755 --- a/low-can-binding/can/signals.cpp +++ b/low-can-binding/can/signals.cpp @@ -45,7 +45,6 @@ signal_t::signal_t( signal_encoder encoder, bool received, std::pair<bool, int> multiplex, - bool is_big_endian, sign_t sign, int32_t bit_sign_position, std::string unit) @@ -67,7 +66,6 @@ signal_t::signal_t( , received_{received} , last_value_{.0f} , multiplex_{multiplex} - , is_big_endian_{is_big_endian} , sign_{sign} , bit_sign_position_{bit_sign_position} , unit_{unit} @@ -232,11 +230,6 @@ std::pair<bool,int> signal_t::get_multiplex() const return multiplex_; } -bool signal_t::get_is_big_endian() const -{ - return is_big_endian_; -} - sign_t signal_t::get_sign() const { return sign_; diff --git a/low-can-binding/can/signals.hpp b/low-can-binding/can/signals.hpp index bf779981..cd1c919a 100755 --- a/low-can-binding/can/signals.hpp +++ b/low-can-binding/can/signals.hpp @@ -107,7 +107,6 @@ private: std::pair<bool, int> multiplex_; /*!< multiplex_ - If bool is false and int is 0 is not a multiplex signal If bool is true, that indicate that is a multiplexor If int is different of 0, that indicate the link with a multiplexor */ - bool is_big_endian_; /*!< is_big_endian - True if the signal's data are meant to be read as a big_endian */ sign_t sign_; /* !< sign_ - if the data is signed it indicates the encode */ int32_t bit_sign_position_; /*!< bit_sign_position_ - The bit that indicates the sign of the signal in its CAN message*/ std::string unit_; /* !< unit_ - The unit of the data */ @@ -131,7 +130,6 @@ public: signal_encoder encoder, bool received, std::pair<bool, int> multiplex, - bool is_big_endian, sign_t sign, int32_t bit_sign_position, std::string unit); @@ -173,7 +171,6 @@ public: float get_last_value() const; std::pair<float, uint64_t> get_last_value_with_timestamp() const; std::pair<bool, int> get_multiplex() const; - bool get_is_big_endian() const; sign_t get_sign() const; int32_t get_bit_sign_position() const; const std::string get_unit() const; |