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.

CCS/LAUNCHXL2-TMS57012: Problem with using SCI port

Part Number: LAUNCHXL2-TMS57012
Other Parts Discussed in Thread: HALCOGEN

Tool/software: Code Composer Studio

Hi, 

I'm trying to use SCI port to send simple text from uC to PC. I connected J11.33 and J11.34 to my PL2303 converter and then converter to PC via USB. 

I used HaloGen to configure the port:


I have the impression that I am bypassing some simple configuration that prevents sending data.
I tried to communicate using SCI / LIN and everything works fine (then I replace sciREG with scilinREG).
I open the virtual port of the PL2303 device for communication. It is configured the same as the port settings in HalcoGen.

In my code I'm using ony sciInit and sciSend:

int main(void)
{
/* USER CODE BEGIN (3) */

    sciInit();
    gioInit();

    sciSend(sciREG, 8, (unsigned char *)"Test: \r\n");

    while(1);

/* USER CODE END */
}