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.

TMS320F28379D: SCI Bootloader test with LunchPadXL TMS320F28379D

Part Number: TMS320F28379D
Other Parts Discussed in Thread: TMS320F28379S, C2000WARE

Hello
I’m a very Newbie on the C2000 Controllers. My task is now to develop a SCI bootloader for the TMS320F28379S. I have LunchpadXL with a TMS320F28379D to test.
Is is possible to test the example F2837xD_sci_flash_kernels_cpu01 with the LunchpadXL?
I know that I have ot add a define _LAUNCHXL_F28379D to get the correct PLL settings. But it is possible to use the integrate COM Port on Pins 42 and 43? Add only a new Pin mux option?

SCI_Pinmux_Option3(void)
{
//
// Configure GPIO42 as SCITXDA (Output pin)
// Configure GPIO43 as SCIRXDA (Input pin)
// Configure GPIO43 (SCIRXRA) as async pin
//

EALLOW;
GPIO_SetupPinOptions(42, GPIO_OUTPUT, GPIO_ASYNC);
GPIO_SetupPinMux(42,GPIO_MUX_CPU1,15);
GPIO_SetupPinOptions(43, GPIO_INPUT, GPIO_ASYNC); // GPIO_PUSHPULL
GPIO_SetupPinMux(43,GPIO_MUX_CPU1,15);
EDIS;
}

Thanks for your help
Tobias