/** ****************************************************************************** * @file stm32_lpm.h * @author MCD Application Team * @brief Header for stm32_lpm.c module ****************************************************************************** * @attention * *

© Copyright (c) 2019 STMicroelectronics. * All rights reserved.

* * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef STM32_TINY_LPM_H #define STM32_TINY_LPM_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stdint.h" /** @defgroup TINY_LPM TINY LPM * @{ */ /* Exported typedef ---------------------------------------------------------*/ /** @defgroup TINY_LPM_Exported_typedef TINY LPM exported typedef * @{ */ /** * @brief type definition to represent the bit mask of an LPM mode */ typedef uint32_t UTIL_LPM_bm_t; /** * @brief type definition to represent value of an LPM mode */ typedef enum { UTIL_LPM_ENABLE=0, UTIL_LPM_DISABLE, } UTIL_LPM_State_t; /** * @brief type definition to represent the different type of LPM mode */ typedef enum { UTIL_LPM_SLEEPMODE, UTIL_LPM_STOPMODE, UTIL_LPM_OFFMODE, } UTIL_LPM_Mode_t; /** * @} */ /** @defgroup TINY_LPM_Exported_struct TINY LPM exported struct * @{ */ /** * @brief LPM driver definition */ struct UTIL_LPM_Driver_s { void (*EnterSleepMode) ( void ); /*!