/* * File: power_mgmt.h * Author: thebears * * Created on December 20, 2024, 3:54 PM */ #include "defines.h" // for DO_UART, which shutdown_all_peripherals() tests #include #ifndef POWER_MGMT_H #define POWER_MGMT_H #ifdef __cplusplus extern "C" { #endif void shutdown_all_peripherals(void); #ifdef __cplusplus } #endif #endif /* POWER_MGMT_H */