diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-26 18:25:33 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-27 01:03:34 +0200 |
commit | abd0190c2ba3a624272ed1f6a3a9c8fe8c4dd140 (patch) | |
tree | 7d03baa326eaafdcc736ddbd8ac3457dbe7dc32d /CAN-binder/low-can-binding/can/can-message.cpp | |
parent | ba71ee9e4b6fa081a60b5e575fff82422e630977 (diff) |
Create method to handle both CAN frames.
Change-Id: Ie876614266fd2e7089754a8f917d25d316de4c98
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Fix: wrong call since renaming of function to more generic name
Change-Id: I2adebb855bc815ba6ab14a1002b17d9c9fb293fd
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/can/can-message.cpp')
-rw-r--r-- | CAN-binder/low-can-binding/can/can-message.cpp | 115 |
1 files changed, 97 insertions, 18 deletions
diff --git a/CAN-binder/low-can-binding/can/can-message.cpp b/CAN-binder/low-can-binding/can/can-message.cpp index f27dce3f..3575348f 100644 --- a/CAN-binder/low-can-binding/can/can-message.cpp +++ b/CAN-binder/low-can-binding/can/can-message.cpp @@ -143,7 +143,6 @@ void can_message_t::set_format(const can_message_format_t new_format) ERROR(binder_interface, "%s: Can set format, wrong format chosen", __FUNCTION__); } -/// /// @brief Take a canfd_frame struct to initialize class members /// /// This is the preferred way to initialize class members. @@ -153,7 +152,7 @@ void can_message_t::set_format(const can_message_format_t new_format) /// /// @return A can_message_t object fully initialized with canfd_frame values. /// -can_message_t can_message_t::convert_from_canfd_frame(const struct canfd_frame& frame, size_t nbytes) +can_message_t can_message_t::convert_from_frame(const struct canfd_frame& frame, size_t nbytes) { uint8_t maxdlen, length, flags = (uint8_t)NULL; uint32_t id; @@ -177,26 +176,19 @@ can_message_t can_message_t::convert_from_canfd_frame(const struct canfd_frame& } if (frame.can_id & CAN_ERR_FLAG) + { format = can_message_format_t::ERROR; + id = frame.can_id & (CAN_ERR_MASK|CAN_ERR_FLAG); + } else if (frame.can_id & CAN_EFF_FLAG) + { format = can_message_format_t::EXTENDED; + id = frame.can_id & CAN_EFF_MASK; + } else - format = can_message_format_t::STANDARD; - - switch(format) { - case can_message_format_t::STANDARD: - id = frame.can_id & CAN_SFF_MASK; - break; - case can_message_format_t::EXTENDED: - id = frame.can_id & CAN_EFF_MASK; - break; - case can_message_format_t::ERROR: - id = frame.can_id & (CAN_ERR_MASK|CAN_ERR_FLAG); - break; - default: - ERROR(binder_interface, "%s: Can set id, not a compatible format or format not set prior to set id.", __FUNCTION__); - break; + format = can_message_format_t::STANDARD; + id = frame.can_id & CAN_SFF_MASK; } /* Overwrite length_ if RTR flags is detected. @@ -240,6 +232,77 @@ can_message_t can_message_t::convert_from_canfd_frame(const struct canfd_frame& return can_message_t(maxdlen, id, length, format, rtr_flag, flags, data); } +can_message_t can_message_t::convert_from_frame(const struct can_frame& frame, size_t nbytes) +{ + uint8_t maxdlen, length, flags = (uint8_t)NULL; + uint32_t id; + can_message_format_t format; + bool rtr_flag; + std::vector<uint8_t> data; + + if(nbytes <= CAN_MTU) + { + DEBUG(binder_interface, "%s: Got a legacy CAN frame", __FUNCTION__); + maxdlen = CAN_MAX_DLEN; + } + else + { + ERROR(binder_interface, "%s: unsupported CAN frame", __FUNCTION__); + } + + if (frame.can_id & CAN_ERR_FLAG) + { + format = can_message_format_t::ERROR; + id = frame.can_id & (CAN_ERR_MASK|CAN_ERR_FLAG); + } + else if (frame.can_id & CAN_EFF_FLAG) + { + format = can_message_format_t::EXTENDED; + id = frame.can_id & CAN_EFF_MASK; + } + else + { + format = can_message_format_t::STANDARD; + id = frame.can_id & CAN_SFF_MASK; + } + + /* Overwrite length_ if RTR flags is detected. + * standard CAN frames may have RTR enabled. There are no ERR frames with RTR */ + if (frame.can_id & CAN_RTR_FLAG) + { + rtr_flag = true; + if(frame.can_dlc && frame.can_dlc <= CAN_MAX_DLC) + { + if(rtr_flag) + length = frame.can_dlc& 0xF; + else + { + length = (frame.can_dlc > maxdlen) ? maxdlen : frame.can_dlc; + } + } + } + else + { + length = (frame.can_dlc > maxdlen) ? maxdlen : frame.can_dlc; + + if (data.capacity() < maxdlen) + data.reserve(maxdlen); + int i; + + data.clear(); + /* maxdlen_ is now set at CAN_MAX_DLEN or CANFD_MAX_DLEN, respectively 8 and 64 bytes*/ + for(i=0;i<maxdlen;i++) + { + data.push_back(frame.data[i]); + }; + +// DEBUG(binder_interface, "%s: Found id: %X, format: %X, length: %X, data %02X%02X%02X%02X%02X%02X%02X%02X", __FUNCTION__, +// id, (uint8_t)format, length, data[0], data[1], data[2], data[3], data[4], data[5], data[6], data[7]); + } + + return can_message_t(maxdlen, id, length, format, rtr_flag, flags, data); +} + /// /// @brief Take all initialized class's members and build an /// canfd_frame struct that can be use to send a CAN message over @@ -247,7 +310,7 @@ can_message_t can_message_t::convert_from_canfd_frame(const struct canfd_frame& /// /// @return canfd_frame struct built from class members. /// -canfd_frame can_message_t::convert_to_canfd_frame() +struct canfd_frame can_message_t::convert_to_canfd_frame() { canfd_frame frame; @@ -262,3 +325,19 @@ canfd_frame can_message_t::convert_to_canfd_frame() return frame; } + +struct can_frame can_message_t::convert_to_can_frame() +{ + can_frame frame; + + if(is_correct_to_send()) + { + frame.can_id = get_id(); + frame.can_dlc = get_length(); + ::memcpy(frame.data, get_data(), length_); + } + else + ERROR(binder_interface, "%s: can_message_t not correctly initialized to be sent", __FUNCTION__); + + return frame; +} |