/** 函數(shù)庫說明:ATMEGA8 T1定時器 CTC模式 10ms定時器 1s連續(xù)定時* 版本: v1.00 * 修改: 龐輝 蕪湖聯(lián)大飛思卡爾工作室 * 修改日期: 2011年08月08日 * * 說明: 相當(dāng)于51自動重載模式* * 版本更新: 詳見readme.txt** 20110805 V1.02 * *注意: 6M外部晶振/#include <avr/io.h>#include interrupt.h>int main(void){DDRC |= (1 << DDC5);//10ms定時ICR1 = 7500;//OCR1A = 7500;//使能比較匹配A中斷TIMSK |= (1 << OCIE1A);//開總中斷sei();//CTC ICR1模式 8分頻 啟動CTC TCCR1B |= (1 << WGM13) | (1 << WGM12) | (1 << CS11);//TCCR1B |= (1 << WGM12) | (1 << CS11);return 0; }volatile int i = 0;SIGNAL(SIG_OUTPUT_COMPARE1A){i++;if(i == 100){i = 0;PORTC ^= (1 << PC5);}}
評論