我是 MPLAB X Harmony 框架的新手,也是使用微控制器的新手。我正在研究 PIC32MZ2048ECH144。我想使用 USART 传输一个简单的字符串,并在 RealTerm 终端中看到它的显示。(我也尝试过超级终端。)无论我发送什么字符串,我只看到显示垃圾字符。当我浏览解决显示垃圾字符问题的解决方案时,有人建议检查波特率。我在 MPLab Harmony 配置器中将波特率设置为 9600(选项 -> Harmony 框架配置 -> 驱动程序 -> USART -> USART 驱动程序实例 0 -> 波特率 -> 9600)。所以我在 app.c 中使用以下行来明确设置波特率。(PBCLK 为 100MHz)。但没有运气!PLIB_USART_BaudRateSet(USART_ID_2, 100000000 ,9600); app.c 文件的代码:
/*******************************************************************************
Start of File
*/
const char *string1 = "*** UART Interrupt-driven Application Example ***\r\n";
const char *string2 = "*** Type some characters and observe the LED turn ON ***\r\n";
APP_DATA appData =
{
};
APP_DRV_OBJECTS appDrvObject;
void APP_Initialize ( void )
{
appData.state = USART_ENABLE;
appData.InterruptFlag = false;
}
bool WriteString(void)
{
if(*appData.stringPointer == '\0')
{
return true;
}
while (PLIB_USART_TransmitterIsEmpty(USART_ID_1))
{
PLIB_USART_TransmitterByteSend(USART_ID_1, *appData.stringPointer);
appData.stringPointer++;
if(*appData.stringPointer == '\0')
{
return true;
}
}
return false;
}
bool PutCharacter(const char character)
{
if(PLIB_USART_TransmitterIsEmpty(USART_ID_1))
{
PLIB_USART_TransmitterByteSend(USART_ID_1, character);
return true;
}
else
return false;
}
void APP_Tasks ( void )
{
/* check the application state*/
switch ( appData.state )
{
case USART_ENABLE:
/* Enable the UART module*/
PLIB_USART_BaudRateSet(USART_ID_1, 100000000 ,9600);
PLIB_USART_Enable(USART_ID_1);
appData.stringPointer = string1;
appData.state = USART_TRANSMIT_FIRST_STRING;
break;
case USART_TRANSMIT_FIRST_STRING:
if(true == WriteString())
{
appData.state = USART_TRANSMIT_SECOND_STRING;
appData.stringPointer = string2;
}
break;
case USART_TRANSMIT_SECOND_STRING:
if(true == WriteString())
{
appData.state = USART_RECEIVE_DONE;
}
break;
case USART_RECEIVE_DONE:
if (appData.InterruptFlag)
{
if(true == PutCharacter(appData.data))
{
appData.InterruptFlag = false;
}
}
break;
default:
while (1);
}
}
/*******************************************************************************
End of File
*/
很抱歉,由于我没有足够的积分,我无法附上我在 RealTerm 中收到的输出图像。我不知道还有什么问题可能导致波特率不匹配。任何提示或帮助都会有很大帮助。提前致谢。请为帖子中的任何错误向我道歉。