#include<iom128v.h>
#include<macros.h>
#define uint unsigned int
#define uchar unsigned char
uint num;
void Inti_time0()
{
TIMSK |= BIT(0);//允许定时0使能溢出
TCCR0 = 0x06;//采用256分频工作方式
TCNT0 = 0x82;//每8ms溢出
SREG|= BIT(7);//开启总中断
}
#pragma interrupt_handler time0:17
void time0()
{
static uchar cnt=0;
cnt++;
TCNT0=0x82;//每8ms溢出
if(cnt>=125)
{
num++;
cnt=0;
}
}
void main()
{
DDRA=0xff;//a管口输出
PORTA=0xff;
Inti_time0();
while(1){
PORTA=~num;}
}
a管口接有二极管 所以想让它进入中断显示num的值 但是烧录进去发现一直进不去中断是什么原因呢
此帖出自
小平头技术问答
#include<avr/io.h>
#include<avr/interrupt.h>
unsigned char cnt;
void INTI_time0(void)
{
TIMSK|=0x01;//允许定时器0溢出中断
TCCR0=0x06;//设置256分频
TCNT0=0x82;//8ms溢出时长
}
ISR(TIMER0_OVF_vect)
{
static unsigned char num=0;
TCNT0=0x82;//8ms溢出时长
num++;
if(num>=125)//一秒时长
{
num=0;
cnt++;
}
PORTA=~cnt;//此处放在外部死循环是 a管口仍然不能输出电平变化
}
void main()
{
INTI_time0();
DDRA=0xff;//设置a管口为输出方式
sei();
while(1)
{
;
}
}
一周热门 更多>