123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #if defined(USE_FULL_LL_DRIVER)
- #include "stm32l4xx_ll_pwr.h"
- #include "stm32l4xx_ll_bus.h"
- #if defined(PWR)
- ErrorStatus LL_PWR_DeInit(void)
- {
-
- LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_PWR);
-
- LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_PWR);
- return SUCCESS;
- }
- #endif
- #endif
|