X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=low-can-binding%2Fbinding%2Flow-can-subscription.cpp;h=d4ada3fe1d81c5b9251fceb4043a1814bb0d7703;hb=59bffa4;hp=a1187edde387d5ba7ad0adf4a4cac2d1a8eec306;hpb=ff6e251cd95827bbfdf55303af726bccd27143b1;p=apps%2Fagl-service-can-low-level.git diff --git a/low-can-binding/binding/low-can-subscription.cpp b/low-can-binding/binding/low-can-subscription.cpp index a1187edd..d4ada3fe 100644 --- a/low-can-binding/binding/low-can-subscription.cpp +++ b/low-can-binding/binding/low-can-subscription.cpp @@ -331,6 +331,7 @@ struct bcm_msg low_can_subscription_t::make_bcm_head(uint32_t opcode, uint32_t c bcm_msg.msg_head.ival2.tv_sec = frequency_thinning.tv_sec ; bcm_msg.msg_head.ival2.tv_usec = frequency_thinning.tv_usec; + return bcm_msg; } @@ -353,6 +354,17 @@ void low_can_subscription_t::add_one_bcm_frame(struct canfd_frame& cfd, struct b bcm_msg.msg_head.nframes++; } +/// @brief Take an existing bcm_msg struct and add a can_frame. +/// Currently only 1 uniq can_frame can be added, it's not possible to build +/// a multiplexed message with several can_frame. +void low_can_subscription_t::remove_last_bcm_frame(struct bcm_msg& bcm_msg) +{ + struct canfd_frame cf; + memset(&cf,0,sizeof(cf)); + bcm_msg.fd_frames[bcm_msg.msg_head.nframes] = cf; + bcm_msg.msg_head.nframes--; +} + #ifdef USE_FEATURE_J1939 int low_can_subscription_t::create_rx_filter_j1939(low_can_subscription_t &subscription, std::shared_ptr sig) { @@ -378,32 +390,65 @@ int low_can_subscription_t::create_rx_filter_can(low_can_subscription_t &subscri struct timeval freq, timeout = {0, 0}; struct canfd_frame cfd; subscription.signal_= sig; + bool is_fd = sig->get_message()->is_fd(); + + std::vector data; + uint32_t length_msg = sig->get_message()->get_length(); + + if(length_msg == 0) + { + AFB_ERROR("Error in the length of message with id %d",sig->get_message()->get_id()); + return -1; + } + + for(int i = 0; iget_message()->is_fd()) + can_message_t cm; + + if (is_fd) { flags = SETTIMER|RX_NO_AUTOTIMER|CAN_FD_FRAME; cfd.len = CANFD_MAX_DLEN; + cm = can_message_t(CANFD_MAX_DLEN,sig->get_message()->get_id(),length_msg,sig->get_message()->get_format(),false,CAN_FD_FRAME,data,0); } else { flags = SETTIMER|RX_NO_AUTOTIMER; cfd.len = CAN_MAX_DLEN; + cm = can_message_t(CAN_MAX_DLEN,sig->get_message()->get_id(),length_msg,sig->get_message()->get_format(),false,0,data,0); } - val = (float)(1 << subscription.signal_->get_bit_size()) - 1; - if(! bitfield_encode_float(val, - subscription.signal_->get_bit_position(), - subscription.signal_->get_bit_size(), - 1, - subscription.signal_->get_offset(), - cfd.data, - cfd.len)) - return -1; frequency_clock_t f = subscription.event_filter_.frequency == 0 ? subscription.signal_->get_frequency() : frequency_clock_t(subscription.event_filter_.frequency); freq = f.get_timeval_from_period(); struct bcm_msg bcm_msg = subscription.make_bcm_head(RX_SETUP, subscription.signal_->get_message()->get_id(), flags, timeout, freq); - subscription.add_one_bcm_frame(cfd, bcm_msg); + + std::vector cfd_vect = cm.convert_to_canfd_frame_vector(); + + if(cfd_vect.size() > 1) //multi + { + AFB_ERROR("Not implemented yet"); + return -1; + } + else if(cfd_vect.size() == 1) + { + canfd_frame cf = cfd_vect[0]; + for(int i=0;i