Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/lpm/tiny_lpm/stm32_lpm_if_template.h')
-rw-r--r--Utilities/lpm/tiny_lpm/stm32_lpm_if_template.h40
1 files changed, 21 insertions, 19 deletions
diff --git a/Utilities/lpm/tiny_lpm/stm32_lpm_if_template.h b/Utilities/lpm/tiny_lpm/stm32_lpm_if_template.h
index 04d301161..dd5adf85d 100644
--- a/Utilities/lpm/tiny_lpm/stm32_lpm_if_template.h
+++ b/Utilities/lpm/tiny_lpm/stm32_lpm_if_template.h
@@ -17,8 +17,8 @@
*/
/* Define to prevent recursive inclusion -------------------------------------*/
-#ifndef __STM32_LPM_IF_H
-#define __STM32_LPM_IF_H
+#ifndef STM32_TINY_LPM_IF_H
+#define STM32_TINY_LPM_IF_H
#ifdef __cplusplus
extern "C" {
@@ -26,54 +26,56 @@ extern "C" {
/* Includes ------------------------------------------------------------------*/
+/** @defgroup TINY_LPM_IF TINY LPM IF
+ * @{
+ */
+
+/* Exported Functions ------------------------------------------------------------------*/
+
+/** @defgroup TINY_LPM_IF_Exported_functions TINY LPM IF Exported functions
+ * @{
+ */
+
/**
* @brief Enters Low Power Off Mode
- * @param none
- * @retval none
*/
void PWR_EnterOffMode( void );
/**
* @brief Exits Low Power Off Mode
- * @param none
- * @retval none
*/
void PWR_ExitOffMode( void );
/**
* @brief Enters Low Power Stop Mode
- * @note ARM exists the function when waking up
- * @param none
- * @retval none
*/
void PWR_EnterStopMode( void );
/**
* @brief Exits Low Power Stop Mode
- * @note Enable the pll at 32MHz
- * @param none
- * @retval none
*/
void PWR_ExitStopMode( void );
/**
* @brief Enters Low Power Sleep Mode
- * @note ARM exits the function when waking up
- * @param none
- * @retval none
*/
void PWR_EnterSleepMode( void );
/**
* @brief Exits Low Power Sleep Mode
- * @note ARM exits the function when waking up
- * @param none
- * @retval none
*/
void PWR_ExitSleepMode( void );
+/**
+ * @}
+ */
+
+/**
+ * @}
+ */
+
#ifdef __cplusplus
}
#endif
-#endif /*__STM32_LPM_IF_H */
+#endif /* STM32_TINY_LPM_IF_H */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/