您好,歡迎訪問(wèn)上?,F(xiàn)易電子元器件有限公司網(wǎng)站!
實(shí)驗(yàn)內(nèi)容:
使用AVR的外部中斷INT1檢測(cè)PD3Key,如果有按鍵按下,則喚醒休眠的MCU,并使它的PB口的LED做加1指示。
#include
#define DISP_DDR DDRB
#define DISP_PORT PORTB
#define IN_PD3 cbi(DDRD,3) //PD3
#define SET_PD3 sbi(PORTD,3)
#define GET_PD3 gbi(PIND,3)
//PORTA|=BIT(5); 就是把把第6位置1;
//PORTA=~BIT(5); 就是把第6位置零
//DDRB |= 0x80; //等于“sbi(DDRB,7);” 置1位
//DDRB &= ~0x80; //等于“cbi(DDRB,7);”清零
/*--------------------------------------------------------
程序名稱(chēng):外部中斷服務(wù)程序
-------------------------------------------------------*/
#pragma interrupt_handler int1_isr:3
//是一個(gè)編譯器的關(guān)鍵字聲明,聲明這個(gè)函數(shù)是一個(gè)中斷服務(wù)函數(shù),后面跟的數(shù)字是中斷向量號(hào)。
void int1_isr(void)
{
GICR &= 0b01111111; // disable int1 interrupt 通用中斷控制寄存器 GICR
DISP_PORT++; // 顯示口指示加1,指示被按次數(shù)
delay50ms(4);
GICR |= 0b10000000; // enable int1 interrupt
}
/*--------------------------------------------------------
程序名稱(chēng):外部中斷初始化程序
--------------------------------------------------------*/
void int1_init()
{
IN_PD3; // set PD3/INT1 as input
SET_PD3; // set PD3/INT1 as output,high level,avoid triggering
MCUCR |= 0b11110011; // set PD3/INT1 as low level active
GICR |= 0b10000000; // enable global interrupt
SEI(); // enable external interrupt
}
void main(void)
{
DISP_DDR = 0xFF;
DISP_PORT = 0x00;
int1_init();
asm("sleep"); // set mcu as sleep modle
//開(kāi)機(jī)后MCU處于SLEEP狀態(tài),之后按按鍵,LED作出了簡(jiǎn)單指示。
while(1);
}
上?,F(xiàn)易電子元器件有限公司 版權(quán)所有 未經(jīng)授權(quán)禁止復(fù)制或鏡像
CopyRight 2020-2025 29711999.com.cn All rights reserved 滬ICP備2020031792號(hào)