這裏在程序中,通過使用定時器中斷&來循環使用LED,如果有人按下開關,它應該停止第一個中斷&觸發第二個應該根據開關點亮LED按下。在這裏,我有點困惑,哪個中斷被調用。我提到了一些針對變化中斷的書籍&寫了幾行設置PCMSK2。所得到的輸出是「最初所有的LED都是循環的,當按下一個開關時......再次啓動LED循環(這意味着程序正在讀輸入,而不是觸發第二次中斷),它不停止或者暫停&後面的led不亮。「任何人都可以幫忙嗎?引腳電平變化中斷 - 帶內部中斷的外部中斷
#include <avr/io.h>
#include <avr/interrupt.h>
#define PINK_MASK \
((1<<PINK0)|(1<<PINK1)|(1<<PINK2)|(1<<PINK3)|(1<<PINK4)|(1<<PINK5)|(1<<PINK6)|(1<<PINK7))
volatile unsigned int intrs, i=1;
void enable_ports(void);
void delay(void);
extern void __vector_23 (void) __attribute__ ((interrupt));
extern void __vector_25 (void) __attribute__ ((signal));
void enable_ports()
{
DDRB = 0xff; //PORTB as output for leds
PORTB = 0xff;
DDRK = 0x00; //PORTK as input from switches
PORTK |= PINK_MASK;
PCMSK2 = PINK_MASK; //ENABLE PCMSK2, Setting interrupts
PCICR = 0x04;
PCIFR = 0x04;
TCCR0B = 0x03; //Setting TIMER
TIMSK0 = 0x01;
TCNT0 = 0x00;
intrs = 0;
}
void __vector_23 (void)
{
intrs++;
if(intrs > 60)
{
intrs = 0;
PORTB = (0xff<<i);
i++ ;
if(i == 10)
{
PORTB = 0xff;
i = 1 ;
}
}
}
void __vector_25 (void)
{
unsigned char switches;
switches = ((~PINK) & (PINK_MASK)); //Reading from switches
if(switches & (1<<PINK0))
PORTB = (PORTB<<PINK0);
else if (switches & (1<<PINK1))
PORTB = (PORTB<<PINK1);
else if (switches & (1<<PINK2))
PORTB = (PORTB<<PINK2);
else if (switches & (1<<PINK3))
PORTB = (PORTB<<PINK3);
else if (switches & (1<<PINK4))
PORTB = (PORTB<<PINK4);
else if (switches & (1<<PINK5))
PORTB = (PORTB<<PINK5);
else if (switches & (1<<PINK6))
PORTB = (PORTB<<PINK6);
else if (switches & (1<<PINK7))
PORTB = (PORTB<<PINK7);
}
int main(void)
{
enable_ports();
sei();
while(1)
{
}
}
感謝您的支持。
任何人都請幫忙! – sneezy 2010-11-10 00:11:04
對不起,我不使用AtmelμC。但是,也許你可以問http://embdev.net/ – AndreKR 2010-11-10 00:15:53
你的目標是什麼特定設備? – evilspacepirate 2011-01-09 15:17:17