|
求助阿,兄弟姐妹们,能帮帮我吗?
interrupt[UART1RX_VECTOR] void usart1_rx (void)
{
while (!(IFG1 & UTXIFG0)); // USART0 TX buffer ready?
TXBUF0 = RXBUF1;// RXBUF1 to TXBUF0
}
以上串口0是可以正常收到串口1的数据的,
interrupt[UART0RX_VECTOR] void usart0_rx (void)
{
while (!(IFG2 & UTXIFG1)); // USART1 TX buffer ready?
TXBUF1 = RXBUF0; // RXBUF0 to TXBUF1
}
但这个串口1的数据老出错啊,能不能告诉我为什么?
万分着急啊!
|
|