1
我正在使用Atmega169/AVR Butterfly的UART傳輸到另一塊電路板,波特率56700,無奇偶校驗,1個停止位,無流量控制。振盪器運行在7,3768Mhz(檢查)。我可以成功傳輸數據(與其他電路板和PC /超級終端一起檢查),但沒有收到任何數據 - 當運行調試器時,配置位全部設置正確,但RXC不斷連續 - 我還檢查了是否可以將數據發送到我自己(將TXD連接到RXD並接地),但沒有成功。 (試圖與ISR以及投票) 下面是代碼的相關部分,我希望你可以處理它 - PORTB被用作輸出用於示波器測試(我知道我可以使用一個引腳,但是有沒事就PORTB否則現在):AVR Butterfly UART - 無法接收數據
int main(void){
OSCCAL_Calibrate(); // calibrate the internal oscillator
int UBRR_VAL = ((F_CPU)/(BAUD*16)-1);
UART_Init(UBRR_VAL);
DDRB |= 0xFF;
PORTB = 0;
testCharSend();
while(1);
return 0;
}
void testCharSend()
{
char i = 'x';
while(1){
Uart_Tx(i);
}
}
void UART_Init(unsigned int baudrate)
{
// Set baud rate
UBRRH = (unsigned char)(baudrate>>8);
UBRRL = (unsigned char)baudrate;
UCSRA = 0;
// Enable receiver and transmitter
UCSRB = (1<<RXEN)|(1<<TXEN);
// Async. mode, 8bit, No parity, 1 stop bit (like CC2540)
UCSRC = (0<<UMSEL)|(0<<UPM0)|(0<<USBS)|(3<<UCSZ0)|(0<<UCPOL);
// enable receive interrupt
UCSRB |= (1<<RXCIE);
// flush UART
UART_Flush();
}
void UART_Flush(void)
{
unsigned char dummy;
while (UCSRA & (1<<RXC)) dummy = UDR;
}
void Uart_Tx(char data)
{
while (!(UCSRA & (1<<UDRE)));
UDR = data;
}
ISR (USART0_RX_vect)
{
PORTB ^= 0xFF;
char c = UDR;
}