This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F280039C: LIN in SCI mode linked with DMA in Sysconfig

Part Number: TMS320F280039C
Other Parts Discussed in Thread: SYSCONFIG, C2000WARE

Dear Champs,

I am asking this for our customer.

With C2000ware V5.02, we have LIN in SCI mode linked with DMA in Sysconfig.

Questions:

1. If the user only needs to use LIN in SCI mode for TX DMA request, is interrupt Line 0 required?

See below, the user is very confused.

After this code to enable TX_DMA trigger,

LIN_enableSCIInterrupt(myLIN0_BASE, LIN_SCI_INT_TX_DMA);
 
why are the following needed, especially interrupt line is not chosen?
    // Set the LIN SCI interrupt priority Line 0
    //
    LIN_setSCIInterruptLevel0(myLIN0_BASE, LIN_SCI_INT_TX_DMA);
    LIN_enableGlobalInterrupt(myLIN0_BASE, LIN_INTERRUPT_LINE0);
    LIN_clearGlobalInterruptStatus(myLIN0_BASE, LIN_INTERRUPT_LINE0); 

2. Based on the description below, does that mean TX interrupts and TX DMA are mutually exclusive? Only one of them can be used?

3. Why is there a warning below by default?

The user wants to use SCITD of LIN module in SCI mode.

How does the user write SCITD in Sysconfig as TX DMA destination address?