永发信息网

我想知道这个程序哪里用到中断了,里面有#include <avr/interrupt.h>和sei();

答案:2  悬赏:30  手机版
解决时间 2021-02-12 10:24
  • 提问者网友:城市野鹿
  • 2021-02-12 02:30
#include #include
#include

unsigned char zifu;void Port_Init(void);
void Usart_Init(void);
void Usart_PutChar(unsigned char data);

int main(void)
{
Port_Init();
Usart_Init();

zifu = 0x31;

Usart_PutChar(zifu);

sei();

while(1)
{

}
}

void Port_Init()
{
PORTD = 0x00;
DDRD |= (1 << PD1);
}

void Usart_Init()
{
UCSRA = 0x00;
UCSRC |= (1<
UBRRL = (F_CPU / 9600 / 16 - 1) % 256; UBRRH = (F_CPU / 9600 / 16 - 1) / 256;
UCSRB |= (1 << TXEN);

}

void Usart_PutChar(unsigned char data)
{
while( !(UCSRA & (1 << UDRE)) );
UDR = data;
}
最佳答案
  • 五星知识达人网友:狂恋
  • 2021-02-12 03:13
没用中断啊...
全部回答
  • 1楼网友:低血压的长颈鹿
  • 2021-02-12 03:52
任务占坑
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯