summaryrefslogtreecommitdiffstats
path: root/CAN-binder/low-can-binding/can/can-bus.cpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-04-20 17:40:06 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-04-20 17:40:06 +0200
commitabf974815dc03c17a8ad7c6c749d53698cdd8dc1 (patch)
treef86d4aef7dd785fc0e2b97ec50877b290ffd9300 /CAN-binder/low-can-binding/can/can-bus.cpp
parent0a27582743cb7b4ad191adea4eefeda01d179896 (diff)
Separate socket configuration and opening
Change-Id: I94cad718b516f24c5d1833e09df89f03e529f48a 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.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/CAN-binder/low-can-binding/can/can-bus.cpp b/CAN-binder/low-can-binding/can/can-bus.cpp
index 4775b4fe..5d8221c0 100644
--- a/CAN-binder/low-can-binding/can/can-bus.cpp
+++ b/CAN-binder/low-can-binding/can/can-bus.cpp
@@ -239,6 +239,7 @@ int can_bus_t::init_can_dev()
can_bus_t::can_devices_[device] = std::make_shared<can_bus_dev_t>(device, i);
if (can_bus_t::can_devices_[device]->open(true) >= 0)
{
+ can_bus_t::can_devices_[device]->configure();
DEBUG(binder_interface, "Start reading thread");
NOTICE(binder_interface, "%s device opened and reading", device.c_str());
can_bus_t::can_devices_[device]->start_reading(*this);