/* * T1_T2_T3_2023_1.c * * Created: 2023/5/30 22:49:53 * Author : XY */ #include <avr/io.h> #include <avr/interrupt.h> #include <avr/sleep.h> void device_init(void) { DDRD |= 0xf0; PORTD &= 0x0f; DDRB |= (_BV(PB4)|_BV(PB6)); DDRE |= _BV(PE7); } void timer1_init(void) { TCCR1B = 0x00; //stop OCR1AH = 0x3D; //TOP of T1 OCR1AL = 0x08; OCR1BH = 0x3D; OCR1BL = 0x08; TCCR1A = 0x10; TCCR1C = 0x00; TCCR1B = 0x0B; //start Timer } void timer2_init(void) { TCCR2B = 0x00; //stop ASSR = 0x20; //set async mode OCR2A = 0x80; TCCR2A = 0x42; TCCR2B = 0x06; //start } void timer3_init(void) { TCCR3B = 0x00; //stop OCR3AH = 0x3D; OCR3AL = 0x08; TCCR3A = 0x00; TCCR3C = 0x00; TCCR3B = 0x0B; //start Timer } ISR(TIMER3_COMPA_vect) { PORTE ^= _BV(PE7); } int main(void) { device_init(); timer1_init(); timer2_init(); timer3_init(); TIMSK3 = 0x02; sei(); while (1) { SMCR |= (0x00<<SM0); sleep_mode(); } } 根据程序中 T1、T2、T3 的配置参数(包括工作模式、分频系数、初值),通过更改SMCR |= (0x00<<SM0)为SMCR |= (0x03<<SM0)和SMCR |= (0x03<<SM0)来分析三个定时器驱动 LED 灯的方式有何区别
时间: 2024-03-19 17:40:08 浏览: 55
Java chat MySQL.zip_MYSQL_T1C_c_s_chat mysql_java c/s
在程序中,更改 SMCR |= (0x00<<SM0) 为 SMCR |= (0x03<<SM0) 和 SMCR |= (0x03<<SM0) 是重复的,应该是一个打印错误。
如果将 SMCR |= (0x03<<SM0) 用于程序中,即将 ATmega128A 进入 Power-save 模式,此模式下只关闭了 CPU 的时钟,其他模块继续工作,外部中断和定时器中断都能唤醒 MCU。因此,定时器和 LED 灯都能继续工作,但因为 CPU 时钟停止,程序中的 while(1) 语句也无法执行,即程序无法继续运行。
如果将 SMCR |= (0x02<<SM0) 用于程序中,即将 ATmega128A 进入 Idle 模式,此模式下仅关闭了 CPU,其他模块继续工作。因此,定时器和 LED 灯也能继续工作,同时程序中的 while(1) 语句能够执行,即程序能够继续运行。
因此,将 ATmega128A 进入 Power-save 模式和 Idle 模式的区别在于,前者会关闭 CPU 的时钟,程序无法继续运行;而后者仅关闭 CPU,程序能够继续运行。
阅读全文