Part Number: MCU-PLUS-SDK-AM263X
Other Parts Discussed in Thread: SYSCONFIG
Hi I have used the SDK example code for external LIN. But, It only sends the header part of the LIN frame. It is supposed to send the txData after LIN_setIDByte but when I check it in the oscilloscope and in CANAlayzer software, I dont see any response field after header part.
LIN_setFrameLength(APP_LIN_BASE_ADDR, i);
/*
* This places data into the transmit buffer.
* No ID or data is placed on the bus and transmitted yet.
*/
LIN_sendData(APP_LIN_BASE_ADDR, txData);
/*
* Set the message ID to initiate a header transmission.
* This causes the ID to be written to the bus followed by the
* data in the transmit buffers.
*/
LIN_setIDByte(APP_LIN_BASE_ADDR, txID);





