我试图将七段显示器与 Atmega16 芯片及其解码器 (74ls47) 连接起来,并使用 ISR 增加它显示的值。ISR 应该打开和关闭一个 LED,然后增加 SSD 的值,但它只会使 LED 闪烁,SSD 没有任何反应。
#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include "DIO.h"
unsigned int counter=0;
int main(void)
{
SREG |= (1<<7); //The Holy Gate
GICR |= (1<<7); //Enableing INT1
MCUCR |=(1<<2); //for INT1
MCUCR |=(1<<3); //for INT1
DDRC =0xFF;
PORTC =0;
DDRB |=(1<<0);
while (1)
{
}
}
ISR (INT1_vect)
{
digitalWrite('B', 0, 1);
_delay_ms(500);
digitalWrite('B', 0, 0);
if (counter <= 9) {
PORTC=counter;
counter++;
} else {
counter=0;
}
}
注意:digitalWrite 是一个在“DIO.h”文件中预定义的打开和关闭 LED 的函数
提前致谢。