Searched refs:txheader (Results 1 – 3 of 3) sorted by relevance
354 can_tx_msg_t txheader = {0}; in _can_sendmsg() local400 txheader.type = CAN_ID_STD; in _can_sendmsg()402 txheader.std = pmsg->id; in _can_sendmsg()406 txheader.type = CAN_ID_EXT; in _can_sendmsg()408 txheader.ext = pmsg->id; in _can_sendmsg()413 txheader.rtr = CAN_RTR_DATA; in _can_sendmsg()417 txheader.rtr = CAN_RTR_REMOTE; in _can_sendmsg()424 …h_can->perh->TxMailBox[box_num].TXID |= (txheader.std << CAN_TXID0_STDID_POSS) | (txheader.rtr << … in _can_sendmsg()428 …erh->TxMailBox[box_num].TXID |= (txheader.ext << CAN_TXID0_EXID_POSS) | (txheader.type << CAN_TXID… in _can_sendmsg()
348 can_tx_msg_t txheader = {0}; in _can_sendmsg() local394 txheader.type = CAN_ID_STD; in _can_sendmsg()396 txheader.std = pmsg->id; in _can_sendmsg()400 txheader.type = CAN_ID_EXT; in _can_sendmsg()402 txheader.ext = pmsg->id; in _can_sendmsg()407 txheader.rtr = CAN_RTR_DATA; in _can_sendmsg()411 txheader.rtr = CAN_RTR_REMOTE; in _can_sendmsg()419 …h_can->perh->TxMailBox[box_num].TXID |= (txheader.std << CAN_TXID0_STDID_POSS) | (txheader.rtr << … in _can_sendmsg()423 …erh->TxMailBox[box_num].TXID |= (txheader.ext << CAN_TXID0_EXID_POSS) | (txheader.type << CAN_TXID… in _can_sendmsg()
492 CAN_TxHeaderTypeDef txheader = {0}; in _can_sendmsg() local532 txheader.IDE = CAN_ID_STD; in _can_sendmsg()534 txheader.StdId = pmsg->id; in _can_sendmsg()538 txheader.IDE = CAN_ID_EXT; in _can_sendmsg()540 txheader.ExtId = pmsg->id; in _can_sendmsg()545 txheader.RTR = CAN_RTR_DATA; in _can_sendmsg()549 txheader.RTR = CAN_RTR_REMOTE; in _can_sendmsg()556 … hcan->Instance->sTxMailBox[box_num].TIR |= (txheader.StdId << CAN_TI0R_STID_Pos) | txheader.RTR; in _can_sendmsg()560 …hcan->Instance->sTxMailBox[box_num].TIR |= (txheader.ExtId << CAN_TI0R_EXID_Pos) | txheader.IDE | … in _can_sendmsg()
Completed in 9 milliseconds