aboutsummaryrefslogtreecommitdiffstats
path: root/low-can-binding/can/signals.cpp
diff options
context:
space:
mode:
authorArthur Guyader <arthur.guyader@iot.bzh>2019-12-15 16:15:28 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2020-01-09 16:25:36 +0100
commit439c289056564cc4723c249f2ba29100efc7d4f8 (patch)
treee2ad2004b5659c57e399a21ef9b29557a8a8165e /low-can-binding/can/signals.cpp
parent466fa12ede042ea273828f801fbcab24196c4d60 (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/signals.cpp')
-rwxr-xr-xlow-can-binding/can/signals.cpp7
1 files changed, 0 insertions, 7 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_;