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.

CC3200 wlan_station例程串口乱码

Other Parts Discussed in Thread: CC3200, CC3200-LAUNCHXL

在CC3200 LaunchPad 上运行CC3200 SDK的例程的时候,发现串口输出乱码,然后我在DisplayBanner(APPLICATION_NAME);语句后面添加循环输出串口log的语句

void main()
{
long lRetVal = -1;

//
// Board Initialization
//
BoardInit();

//
// configure the GPIO pins for LEDs,UART
//
PinMuxConfig();

//
// Configure the UART
//
#ifndef NOTERM
InitTerm();
#endif //NOTERM

//
// Display Application Banner
//
DisplayBanner(APPLICATION_NAME);
while(1)
{
MAP_UtilsDelay(8000000);
UART_PRINT("Debug Info : [ ]\r\n");
}

........

}

电脑上发现log出现乱码。