diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-23 14:09:30 +0000 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-23 14:09:30 +0000 |
commit | d59970dce571c1753174124326406ec1ff8e2ce8 (patch) | |
tree | 9d58203f97dc15353502f49a401fca383b00dd35 /src/can_decode_message.cpp | |
parent | b0975e4bfa534153657a7ee8acaee0f950056e97 (diff) |
Make binder_interface global variable rather than
pass it over and over through class and functions
Change-Id: Ie32d44126a41125c6c45d18663b668328df44e2d
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can_decode_message.cpp')
-rw-r--r-- | src/can_decode_message.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/can_decode_message.cpp b/src/can_decode_message.cpp index 8b087cfc..8fadbdb6 100644 --- a/src/can_decode_message.cpp +++ b/src/can_decode_message.cpp @@ -20,7 +20,7 @@ void can_decode_message(can_bus_t &can_bus) { - can_message_t can_message(can_bus.interface_) ; + can_message_t can_message; std::vector <CanSignal> signals; std::vector <CanSignal>::iterator signals_i; openxc_VehicleMessage vehicle_message; @@ -35,7 +35,7 @@ void can_decode_message(can_bus_t &can_bus) /* First we have to found which CanSignal is */ search_key = build_DynamicField((double)can_message.get_id()); - signals = find_can_signals(can_bus.interface_, search_key); + signals = find_can_signals(search_key); /* Decoding the message ! Don't kill the messenger ! */ for(const auto& sig : signals) |