/* * Copyright (C) 2017-2018 Bas Stottelaar * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup cpu_efm32 * @ingroup drivers_periph_pm * @{ * * @file * @brief Implementation of the power management peripheral * * @author Bas Stottelaar * @} */ #include "periph/pm.h" #include "em_emu.h" void pm_set(unsigned mode) { switch (mode) { case 0: /* after exiting EM3, clocks are restored */ EMU_EnterEM3(true); break; case 1: /* after exiting EM2, clocks are restored */ EMU_EnterEM2(true); break; default: /* wait for next event or interrupt */ EMU_EnterEM1(); } } void pm_off(void) { EMU_EnterEM4(); }