Tool/software:
Hi TI
I'm still testing FSI module.
When I test FSI - A channel using "fsi_ex1_loopback_cpucontrol" by TI exampfle.
FSI -A channel is good working.
I change a FSI -A channel to FSI -B channel.
When I run this example, my debug cursor stops in "fsiRxInt2ISR".
__interrupt void fsiRxInt2ISR(void)
{
rxEventSts = FSI_getRxEventStatus(FSIRXB_BASE);
fsiRxInt2Received = fsiRxInt2Received + 1U;
//
// Clear the interrupt flag and issue ACK
//
FSI_clearRxEvents(FSIRXB_BASE,rxEventSts);
Interrupt_clearACKGroup(INTERRUPT_ACK_GROUP4);
disableAllFSIInterrupts();
//
// INT2 line is set to fire for error events, stop immediately. Error
// is captured in rxEventSts for debug
//
ESTOP0; <-------------------------------------------------------------------------------------------- STOP HERE ....
}
How do I use FSI channel B (FSITXB, FSIRXB) ?
thank you for reading.
