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 TX - RX issue

Other Parts Discussed in Thread: HALCOGEN, TMS570LS3137

hi,

I am using TMS570LS3137 evaluation kit with CCS to transmit Tx- RX via SCI. I am using basic halcogen generated for send and receive data but i am unbale to transmit and receive using polling method.

Can you suggest some settings or is there working sample code which you can share?

Other than halcogen generated sci.h, reg_sci.h and sci.c following main i am using part of which is posted

sciREG->

FUN = (1U << 2U) /* tx pin */

| (1U << 1U)

/* rx pin */

| (0U);

/* clk pin */

sciTxStatus = sciIsTxReady(sciREG);

if (sciTxStatus != 0)

{

sciSend(sciREG, 12, dataTxPtr);

}

sciRxStatus = sciIsRxReady(sciREG);

Thanks

Chitra