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

#include<avr/io.h>#include<util/delay.h>#include<avr/interrupt.h>unsignedcharzifu;voi... #include <avr/io.h> #include <util/delay.h>
#include <avr/interrupt.h>

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<<URSEL) | (1 << UCSZ1) | (1 << UCSZ0);

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;
}
展开
 我来答
若以下回答无法解决问题,邀请你更新回答
lmbno1
2013-04-26 · 超过14用户采纳过TA的回答
知道答主
回答量:31
采纳率:0%
帮助的人:33.9万
展开全部
没用中断啊...
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式