STM32F4xx HAL Driver master
STM32CubeF4 HAL / LL Drivers API Reference
Loading...
Searching...
No Matches
stm32f4xx_ll_pwr.c
Go to the documentation of this file.
1
17#if defined(USE_FULL_LL_DRIVER)
18
19/* Includes ------------------------------------------------------------------*/
20#include "stm32f4xx_ll_pwr.h"
21#include "stm32f4xx_ll_bus.h"
22
26
27#if defined(PWR)
28
32
33/* Private types -------------------------------------------------------------*/
34/* Private variables ---------------------------------------------------------*/
35/* Private constants ---------------------------------------------------------*/
36/* Private macros ------------------------------------------------------------*/
37/* Private function prototypes -----------------------------------------------*/
38
39/* Exported functions --------------------------------------------------------*/
43
47
54ErrorStatus LL_PWR_DeInit(void)
55{
56 /* Force reset of PWR clock */
57 LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_PWR);
58
59 /* Release reset of PWR clock */
60 LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_PWR);
61
62 return SUCCESS;
63}
64
68
72
76#endif /* defined(PWR) */
80
81#endif /* USE_FULL_LL_DRIVER */
Header file of BUS LL module.
Header file of PWR LL module.