#include "iom48v.h" const unsigned char disp[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xa7,0xa1,0x86,0x8e,0xff,0x7f}; unsigned char ledbuf[]={0xff,0xff,0xff,0xff}; unsigned char k=0; unsigned int x=0; unsigned int v=0; unsigned int i=0; unsigned char a[]={0x0e,0x0d,0x0b,0x07}; void delay(unsigned int x){ while(x--); } void io_init(void){ DDRC=0x0f; PORTC=0x0f; DDRB=0xff; PORTB=0xff; DDRD=0x02; } void t1_init(void){ TCCR1A=0x00; TCCR1B=0x0a; TCNT1=0; OCR1A=625; //ctc模式 ICR1=0xffff; } void uart_init(void){ UCSR0A=0b01000000; //异步,1起始位,八数据位,无校验,一停止 UCSR0B=0b00011000; //发送接收使能 UCSR0C=0b00000110; UBRR0=12;//baud=19200 } void uart_send(unsigned char d){//数据发送 while(!(UCSR0A&(1<<UDRE0))); //等待数据寄存器为空 UDR0=d; } unsigned char uart_receive(void){//数据接收 while(!(UCSR0A&(1<<RXC0))); return UDR0; } #pragma interrupt_handler Int_TCCR1A:12 void Int_TCCR1A(void){ k=(k+1)%4; PORTC=0x0f; PORTB=ledbuf[k]; PORTC=a[k]; } void decode(unsigned int v){ ledbuf[0]=disp[v/1000]; v=v%1000; ledbuf[1]=disp[v/100]; v=v%100; ledbuf[2]=disp[v/10]; ledbuf[3]=disp[v%10]; } void main(void){ uart_init(); io_init(); t1_init(); SREG|=0x80; //开启总中断 TIMSK1=0x02; while(1){ if((PIND&0x04)==0x04){ uart_send('a'); } i=uart_receive(); decode(i); } }以上代码是用c语言写的串行通信代码,但是 i=uart_receive(); 无法读取值并且数码管显示不出来,是哪里有问题
时间: 2024-03-30 14:33:57 浏览: 56
AVR.zip_iom16v.h
根据代码,你使用的是 ATmega48P 单片机,串口通信的波特率为 19200。首先,你需要检查串口通信的连接是否正确,包括 TXD 和 RXD 引脚是否正确连接,连接的设备是否能够工作正常。其次,你需要检查串口通信的设置是否正确,包括数据位、停止位、校验位等设置是否与连接的设备一致。最后,你需要检查代码中的串口接收函数是否正确,特别是在等待接收数据时是否有超时机制。同时,你需要检查数码管显示部分的代码是否正确,包括引脚设置、数码管码表等是否正确。如果以上步骤无法解决问题,你还需要通过调试工具(如示波器)等工具进一步分析问题。
阅读全文