你好堆栈溢出的好人。我的问题是一个看似永远不会执行的中断服务程序(ISR)!这是有关我设置的一些信息:我正在闪烁 avr attiny85。到目前为止,我只用一个 main.c 和两个模块:timer 和 hardwareInit 建立了一个项目的基本框架。在定时器模块中,我有一个 timer0_init 函数,用于将 timer0 设置为 CTC 模式,使其每 1 ms 溢出一次。这是功能:
void timer0_init( void )
{
cli();
TCCR0B |= 3; //clock select is divided by 64.
TCCR0A |= 2; //sets mode to CTC
OCR0A = 0x7C; //sets TOP to 124 so the timer will overflow every 1 ms.
TIMSK |= 2; //Enable overflow interrupt
sei(); //enable global interrupts
}
设置好计时器后,我添加了一个 ISR 以在每次计数器溢出时递增滴答声,这样我就可以跟踪已经过去了多少时间,等等。
ISR(TIMER0_OVF_vect)
{
cli();
//ticks ++;
PORTB |= ( 1 << PORTB0 );
sei();
}
正如你所看到的,我注释掉了ticks++,因为它没有工作,并用它替换它PORTB |= ( 1 << PORTB0 );
只是打开一个LED,所以如果中断被执行,我会通过LED亮的证明来知道。
不幸的是,我无法打开它,也看不到我错过了什么。(为了证明我 1. 将 LED 设置在正确的引脚上,并且 2. 在正确的寄存器中操作正确的位,我将这条语句PORTB |= ( 1 << PORTB0 );
放入我的无限循环并确认 LED 亮起)
为了进一步解释,这是我的 main.c:
/*================================= main.c =================================*/
#define F_CPU 8000000UL
#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include "timer.h"
#include "hardwareInit.h"
int main(){
//Initialize hardware HERE
DDRB |= ( 1 << PORTB0 ); //set this pin as an output for an LED
SetClockPrescale(1); //internal clock divided by 1 = 8 MHz, from hardwareInit
timer0_init(); //set up timer0 for 1 ms overflow
while(1)
{
/* if( getTicks() > 0 )
{
PORTB |= ( 1 << PORTB0 );
_delay_ms(1000);
PORTB &= ~( 1 << PORTB0 );
_delay_ms(1000);
} */
}
return 0;
}
所以,你在无限循环中看到的是我首先尝试的,但是在那之后没有用,我尝试了一些更简单的方法,只是有一个空循环(注释掉以前的东西),并等待中断被触发,这将打开 LED。
您可以提供的任何帮助将不胜感激。我很困惑为什么这不起作用。