在线免费在线观看的a_久久国产晶品免费视频_亚洲最大视频偷拍网站_一级特级毛片一级黄色

您好,歡迎訪問上海意泓電子科技有限責任公司網站!
4新聞資訊
您的位置: 首頁 ->  新聞資訊 -> 單片機

?AVR外部中斷INT1檢測按鍵,使用LED作指示

文章出處:單片機 責任編輯:上海意泓電子科技有限責任公司 發(fā)表時間:
2020
11-10

實驗內容: 
使用AVR的外部中斷INT1檢測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);”清零


/*--------------------------------------------------------

程序名稱:外部中斷服務程序

-------------------------------------------------------*/

#pragma interrupt_handler int1_isr:3

//是一個編譯器的關鍵字聲明,聲明這個函數是一個中斷服務函數,后面跟的數字是中斷向量號。

void int1_isr(void)

{

 GICR &= 0b01111111;  // disable int1 interrupt   通用中斷控制寄存器 GICR

 DISP_PORT++;   // 顯示口指示加1,指示被按次數

 delay50ms(4);

 GICR |= 0b10000000;   // enable int1 interrupt

}

/*--------------------------------------------------------

程序名稱:外部中斷初始化程序

--------------------------------------------------------*/

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

 //開機后MCU處于SLEEP狀態(tài),之后按按鍵,LED作出了簡單指示。


 while(1);

}



上海意泓電子科技有限責任公司 版權所有 未經授權禁止復制或鏡像

CopyRight 2020-2025 www.toastedesign.com All rights reserved   滬ICP備2021005866號