定時(shí)器T1中斷實(shí)驗(yàn)
1、定時(shí)器中斷實(shí)驗(yàn)。定時(shí)器產(chǎn)生10mS周期中斷,通過計(jì)數(shù)讓PB1電平產(chǎn)生周期變化。
2、內(nèi)部1 M晶振。
3、進(jìn)行此實(shí)驗(yàn)請(qǐng)插上JP1的所有8個(gè)短路塊,JP7(LED_EN)短路塊。
*/
#include "iom16v.h"
#include macros.h>
/*初始化定時(shí)器,產(chǎn)生10mS周期中斷*/
void T1_Init(void) {
OCR1A = 1250; /*計(jì)數(shù)周期為10mS,F(xiàn)=1M*/
TIMSK |= (1 OCIE1A); /*比較中斷A允許*/
SREG = 0x80;
TCCR1A = 0x00;
TCCR1B = 0x08; /*定時(shí)器工作在CTC計(jì)數(shù)器模式*/
TCCR1B |= 0x02; /*設(shè)置定時(shí)器的分頻值為8分頻*/
}
void main(void) {
DDRA = 0x00; /*方向輸入*/
PORTA = 0xFF; /*打開上拉*/
DDRB = 0xFF; /*方向輸出*/
PORTB = 0xFF; /*電平設(shè)置*/
DDRC = 0x00;
PORTC = 0xFF;
DDRD = 0x00;
PORTD = 0xFF;
T1_Init();
SEI(); /*中斷使能*/
while (1);
}
/*定時(shí)器T1 TCCR1A組比較匹配中斷*/
#pragma interrupt_handler Int_TCCR1A: 7
void Int_TCCR1A(void) {
static unsigned char i;
if (i > 20) {
PORTB ^= (1 PB1);
i = 0;
}
else {
i ++;
}
}
評(píng)論