diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-16 15:14:42 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-19 11:36:43 +0200 |
commit | 452ab62dae573efc3a2d5a5d97c2f10fca5f502d (patch) | |
tree | f19a21230fb54aa5c0d8e02f03af468afffbb01c /CAN-binder/low-can-binding/utils/openxc-utils.cpp | |
parent | c4f11994a1540576563819508d4148a0500db4b9 (diff) |
Be able to return index or can bus name.
Use a vector of string pair that map index on vector and pair map logical bus
name with linux device name.
Change-Id: I627e6f715f7466d835d8729e21d9e4198111c1fb
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/utils/openxc-utils.cpp')
-rw-r--r-- | CAN-binder/low-can-binding/utils/openxc-utils.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/CAN-binder/low-can-binding/utils/openxc-utils.cpp b/CAN-binder/low-can-binding/utils/openxc-utils.cpp index 2cf03e41..286b2f53 100644 --- a/CAN-binder/low-can-binding/utils/openxc-utils.cpp +++ b/CAN-binder/low-can-binding/utils/openxc-utils.cpp @@ -40,9 +40,8 @@ openxc_VehicleMessage build_VehicleMessage(active_diagnostic_request_t* request, message.type = openxc_VehicleMessage_Type::openxc_VehicleMessage_Type_DIAGNOSTIC; message.has_diagnostic_response = true; message.diagnostic_response.has_bus = true; - message.diagnostic_response.bus = conf.get_can_bus_manager().get_can_device( - conf.get_diagnostic_manager().get_can_bus()) - ->get_index(); + message.diagnostic_response.bus = conf.get_can_bus_manager().get_can_device_index( + conf.get_diagnostic_manager().get_can_bus()); message.diagnostic_response.has_message_id = true; if(request->get_id() != OBD2_FUNCTIONAL_BROADCAST_ID) |