Searched refs:msg (Results 1 – 3 of 3) sorted by relevance
43 can_msg_t msg; in stm32_CEC_CAN_IRQ() local50 if (msg.ide) { in stm32_CEC_CAN_IRQ()73 cbuf_write(&can_rx_buf, &msg, sizeof(msg), false); in stm32_CEC_CAN_IRQ()101 if (msg->ide) { in stm32_can_transmit()103 mailbox->TIR = (msg->id << 21) | (msg->id_ex << 3) | CAN_TI0R_IDE in stm32_can_transmit()106 mailbox->TIR = (msg->id << 21) | (msg->rtr ? CAN_TI0R_RTR : 0); in stm32_can_transmit()114 mailbox->TDLR = msg->data[3] << 24 | msg->data[2] << 16 in stm32_can_transmit()115 | msg->data[1] << 8 | msg->data[0]; in stm32_can_transmit()116 mailbox->TDHR = msg->data[7] << 24 | msg->data[6] << 16 in stm32_can_transmit()117 | msg->data[5] << 8 | msg->data[4]; in stm32_can_transmit()[all …]
39 ssize_t can_send(const can_msg_t *msg);49 ssize_t can_recv(can_msg_t *msg, bool block);
268 def error(msg): argument269 print(msg)
Completed in 6 milliseconds