AVR——定時(shí)器用于外部計(jì)數(shù)
mega16的定時(shí)器有外部時(shí)鐘源接口,用于外部計(jì)數(shù)。
Timer0對(duì)應(yīng)T0(PB0),Timer1對(duì)應(yīng)T1(PB1),可以允許上升沿觸發(fā)和下降延觸發(fā),通過TCCRn設(shè)定。
外部計(jì)數(shù)的原理,定時(shí)器選擇外部時(shí)鐘,初始化之后,TCNT0在每次檢測(cè)到信號(hào)變化的時(shí)候加一,知道與TCCR0相同的時(shí)候,產(chǎn)生比較匹配中斷。
本例子程序中,用按鍵來產(chǎn)生外部的信號(hào)的變化,下降延計(jì)數(shù)。
在實(shí)際的應(yīng)用中,可以用來檢測(cè)外部電路產(chǎn)生的高低電平數(shù)量,需要注意,在電路設(shè)計(jì)時(shí),需要考慮加入電容防抖,(在本范例程序中,有時(shí)候按下鍵再抬起,會(huì)產(chǎn)生2個(gè)計(jì)數(shù))。
CODE:
// ICC-AVR application builder : 2007-5-29 15:21:23
// Target : M16
// Crystal: 7.3728Mhz
// 用途:演示定時(shí)器的計(jì)數(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的外部時(shí)鐘輸入腳(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 時(shí)鐘由T0 引腳輸入,下降沿觸發(fā)
}
#pragma interrupt_handler timer0_comp_isr:20
void timer0_comp_isr(void)
{
//compare occured TCNT0=OCR0
//按下鍵OCR0次后,會(huì)進(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 允許定時(shí)器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í)驗(yàn)效果:?jiǎn)?dòng)時(shí),數(shù)碼管顯示0,按下按鍵,數(shù)碼管上的值加1,從0到A顯示,A之后回到0。
偶爾有按一次鍵,數(shù)碼管變兩次的現(xiàn)象,這是由于鍵盤抖動(dòng)著造成的,不用在意,實(shí)際應(yīng)用中在外部電路加濾波電容解決這個(gè)問題。
一點(diǎn)說明: 使用ICC生成的代碼如下,TCNT0 和OCR0 都是不可預(yù)料的值,需要自己進(jìn)行修改,這個(gè)不是ICC的bug,因?yàn)橥獠康臅r(shí)鐘變化不可預(yù)料,程序無法計(jì)算初值和比較匹配的值。
//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
}
評(píng)論