Files
wheel_rfm69_counter/avr_code/power_mgmt.c
T
2026-08-31 22:43:51 -04:00

15 lines
275 B
C

#include "power_mgmt.h"
void shutdown_all_peripherals() {
power_adc_disable();
power_timer0_disable();
power_timer1_disable();
power_timer2_disable();
power_timer3_disable();
#if !DO_UART
power_usart0_disable();
power_usart1_disable();
#endif
}