diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-06-01 15:57:24 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-06-01 18:40:13 +0200 |
commit | 5bb0cc7268f47575b46baa1d7590f2727e8e193d (patch) | |
tree | c15a2e09ff82585fe87c4a436d6f4353d5558f69 /CAN-binder/low-can-binding/can/can-bus.cpp | |
parent | 4ca84d789329dc41aee1bd84a079f13f3d52bf10 (diff) |
Left over renaming variable
Following change from configuration_t to application_t some
variable name doesn't correspond now : conf -> app
Change-Id: I56c3a83113777a43af9024a9bc9b53f705b60b0f
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/can/can-bus.cpp')
-rw-r--r-- | CAN-binder/low-can-binding/can/can-bus.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/CAN-binder/low-can-binding/can/can-bus.cpp b/CAN-binder/low-can-binding/can/can-bus.cpp index 56cde475..cc0a3d6c 100644 --- a/CAN-binder/low-can-binding/can/can-bus.cpp +++ b/CAN-binder/low-can-binding/can/can-bus.cpp @@ -69,7 +69,6 @@ void can_bus_t::process_can_signals(const can_message_t& can_message) int subscription_id = can_message.get_sub_id(); openxc_DynamicField decoded_message; openxc_VehicleMessage vehicle_message; - application_t& conf = application_t::instance(); utils::signals_manager_t& sm = utils::signals_manager_t::instance(); { @@ -82,7 +81,7 @@ void can_bus_t::process_can_signals(const can_message_t& can_message) if( s.find(subscription_id) != s.end() && afb_event_is_valid(s[subscription_id]->get_event())) { bool send = true; - decoded_message = decoder_t::translateSignal(*sig->get_can_signal(), can_message, conf.get_all_can_signals(), &send); + decoded_message = decoder_t::translateSignal(*sig->get_can_signal(), can_message, application_t::instance().get_all_can_signals(), &send); openxc_SimpleMessage s_message = build_SimpleMessage(sig->get_name(), decoded_message); vehicle_message = build_VehicleMessage(s_message, can_message.get_timestamp()); |