Update comments
authorRomain Forlot <romain.forlot@iot.bzh>
Thu, 20 Apr 2017 15:41:16 +0000 (17:41 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Thu, 20 Apr 2017 15:41:16 +0000 (17:41 +0200)
Change-Id: Ib21f810170308a16462ffe9c174448a86bf791d4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
CAN-binder/low-can-binding/can/can-bus-dev.cpp

index 6bd5e67..765eda7 100644 (file)
@@ -50,14 +50,16 @@ uint32_t can_bus_dev_t::get_address() const
 ///  We try to open CAN socket and apply the following options
 ///  timestamp received messages and pass the socket to FD mode.
 ///
-/// @return -1 if something wrong.
+/// @param[in] bcm boolean value indicating wether or not we initialize a Broadcast CAN Manager socket.
+///
+/// @return socket value or -1 if something wrong.
 int can_bus_dev_t::open(bool bcm)
 {
        DEBUG(binder_interface, "open_raw: CAN Handler socket : %d", can_socket_.socket());
        return can_socket_.open(device_name_, bcm);
 }
 
-       // Set some option on the socket : timeout, timestamp and canfd frame usage.
+/// @brief Set some option on the socket, timestamp and canfd frame usage.
 void can_bus_dev_t::configure()
 {
        if (can_socket_)