Because of the holidays, TI E2E™ design support forum responses will be delayed from Dec. 25 through Jan. 2. Thank you for your patience.

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.

Sci b problem

Hi,

 I am trying to  used  SCIa for Modbus and SCIb for GSM infacing SCIa interrupt of RX & TX is working fine but SCIb interrupt is not working.If I Initialize SCIb with in FIFO mode then Interrupt is working but if I disable the FIFO mode interrupt is not working.

ScibRegs.SCICCR.all = config;
ScibRegs.SCICTL1.bit.TXENA = 1; // Tx enable
ScibRegs.SCICTL1.bit.RXENA = 1; // Rx enable
ScibRegs.SCICTL2.bit.TXINTENA = 1; // Tx int Enable
ScibRegs.SCICTL2.bit.RXBKINTENA = 1; // Rx int Enable
ScibRegs.SCIHBAUD = 0x0001;//(Uint8)((baud >> 8) & 0x00ff); // Load Baud Rate
ScibRegs.SCILBAUD = 0x0003;//(Uint8)(baud & 0x00ff);

ScibRegs.SCICTL1.bit.SWRESET = 1; // Relinquish SCI from Reset
/* ScibRegs.SCIFFTX.all=0xC022;
ScibRegs.SCIFFRX.all=0x0022;
ScibRegs.SCIFFCT.all=0x00;

ScibRegs.SCICTL1.all =0x0023; // Relinquish SCI from Reset
ScibRegs.SCIFFTX.bit.TXFIFOXRESET=1;
ScibRegs.SCIFFRX.bit.RXFIFORESET=1;
*/

Regards,

Sagar