Hi,
I need to generate a CAN Extended frame in the CAN Router Pro-FD which has a DLC = 40 bytes and with an extended message ID. The message is currently setup with the following values TxMsg values:
TxMsg.id = 0x18FEE300;
TxMsg.dlc = CAN_LEN48_DLC;
TxMsg.msgtype = CAN_MSGTYPE_EXTENDED;
TxMsg.bufftype = CAN_BUFFER_TX_MSG;
When observing the message in CANalyzer I see DLC = 14, but only 8 bytes of data in the trace.
Is there some limitations to non-standard extended CAN messages which can be created? If it matters the message is in J1939 format with a cyclical transmission rate.
Creating extended message with non-defined DLC
Re: Creating extended message with non-defined DLC
Hi,
if you want to send an extended FD frame with the PCAN-Router Pro FD, you have to bitwise "OR" the message type to have an extended FD BRS message:
example:
TxMsg.msgtype = CAN_MSGTYPE_EXTENDED |CAN_MSGTYPE_FDF | CAN_MSGTYPE_BRS;
But please note: if you want to send a J1939 multipacket message, there is still CAN2.0b format used and not CAN FD, so the message length will still be 8 bytes and you have to send several 8 bytes message as a 40 byte J1939 multipacket message. Here an example with PCAN-Explorer 6 when sending a 18FEE300:
regards
Michael
if you want to send an extended FD frame with the PCAN-Router Pro FD, you have to bitwise "OR" the message type to have an extended FD BRS message:
example:
TxMsg.msgtype = CAN_MSGTYPE_EXTENDED |CAN_MSGTYPE_FDF | CAN_MSGTYPE_BRS;
But please note: if you want to send a J1939 multipacket message, there is still CAN2.0b format used and not CAN FD, so the message length will still be 8 bytes and you have to send several 8 bytes message as a 40 byte J1939 multipacket message. Here an example with PCAN-Explorer 6 when sending a 18FEE300:
regards
Michael