AVR——定時器用于外部計數(shù)
mega16的定時器有外部時鐘源接口,用于外部計數(shù)。
Timer0對應(yīng)T0(PB0),Timer1對應(yīng)T1(PB1),可以允許上升沿觸發(fā)和下降延觸發(fā),通過TCCRn設(shè)定。
外部計數(shù)的原理,定時器選擇外部時鐘,初始化之后,TCNT0在每次檢測到信號變化的時候加一,知道與TCCR0相同的時候,產(chǎn)生比較匹配中斷。
本例子程序中,用按鍵來產(chǎn)生外部的信號的變化,下降延計數(shù)。
在實際的應(yīng)用中,可以用來檢測外部電路產(chǎn)生的高低電平數(shù)量,需要注意,在電路設(shè)計時,需要考慮加入電容防抖,(在本范例程序中,有時候按下鍵再抬起,會產(chǎn)生2個計數(shù))。
CODE:
// ICC-AVR application builder : 2007-5-29 15:21:23
// Target : M16
// Crystal: 7.3728Mhz
// 用途:演示定時器的計數(shù)功能
// 作者:古欣 AVR 與虛擬儀器 [url]www.avrvi.com[/url]
// 連接:接好電源和晶振的跳線
//
//
#include
#include
const unsigned char seg7_data[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71,0x00};//0~F and "shut"
void port_init(void)
{
PORTA = 0xFF;
DDRA = 0xFF;
PORTB = 0x01; //PB0,是TIMER0的外部時鐘輸入腳(T0),需要設(shè)為輸入,并且使能內(nèi)部上拉
DDRB = 0x00;
PORTC = 0x00; //m103 output only
DDRC = 0x00;
PORTD = 0x00;
DDRD = 0x00;
}
//TIMER0 initialize - prescale:Falling edge
// WGM: Normal
// desired value: 1KHz
// actual value: Out of range
void timer0_init(void)
{
TCCR0 = 0x00; //stop
TCNT0 = 0x00; //set count
OCR0 = 0x0A; //set compare十進(jìn)制的十,十次按鍵后匹配,進(jìn)入這里
TCCR0 = 0x06; //start timer 時鐘由T0 引腳輸入,下降沿觸發(fā)
}
#pragma interrupt_handler timer0_comp_isr:20
void timer0_comp_isr(void)
{
//compare occured TCNT0=OCR0
//按下鍵OCR0次后,會進(jìn)入本中斷
TCNT0 = 0x00;
}
//call this routine to initialize all peripherals
void init_devices(void)
{
//stop errant interrupts until set up
CLI(); //disable all interrupts
port_init();
timer0_init();
MCUCR = 0x00;
GICR = 0x00;
TIMSK = 0x02; //timer interrupt sources 允許定時器0,比較中斷
SEI(); //re-enable interrupts
//all peripherals are now initialized
}
void main(void)
{
init_devices();
while(1)
{
PORTA = seg7_data[TCNT0]; //一直顯示TCNT0的值
}
}
[Copy to clipboard]
實驗效果:啟動時,數(shù)碼管顯示0,按下按鍵,數(shù)碼管上的值加1,從0到A顯示,A之后回到0。
偶爾有按一次鍵,數(shù)碼管變兩次的現(xiàn)象,這是由于鍵盤抖動著造成的,不用在意,實際應(yīng)用中在外部電路加濾波電容解決這個問題。
一點說明: 使用ICC生成的代碼如下,TCNT0 和OCR0 都是不可預(yù)料的值,需要自己進(jìn)行修改,這個不是ICC的bug,因為外部的時鐘變化不可預(yù)料,程序無法計算初值和比較匹配的值。
//TIMER0 initialize - prescale:Rising edge
// WGM: Normal
// desired value: 1KHz
// actual value: Out of range
void timer0_init(void)
{
TCCR0 = 0x00; //stop
TCNT0 = 0x00 ; //set count
OCR0 = 0x00 ; //set compare
TCCR0 = 0x06; //start timer
}
CODE:
//TIMER0 initialize - prescale:Rising edge
// WGM: Normal
// desired value: 1KHz
// actual value: Out of range
void timer0_init(void)
{
TCCR0 = 0x00; //stop
TCNT0 = 0x00 ; //set count
OCR0 = 0x00 ; //set compare
TCCR0 = 0x06; //start timer
}
評論