2 ******************************************************************************
3 * @file stm32g4xx_ll_crs.h
4 * @author MCD Application Team
5 * @brief CRS LL module driver.
6 ******************************************************************************
9 * <h2><center>© Copyright (c) 2018 STMicroelectronics.
10 * All rights reserved.</center></h2>
12 * This software component is licensed by ST under BSD 3-Clause license,
13 * the "License"; You may not use this file except in compliance with the
14 * License. You may obtain a copy of the License at:
15 * opensource.org/licenses/BSD-3-Clause
17 ******************************************************************************
19 #if defined(USE_FULL_LL_DRIVER)
21 /* Includes ------------------------------------------------------------------*/
22 #include "stm32g4xx_ll_crs.h"
23 #include "stm32g4xx_ll_bus.h"
25 /** @addtogroup STM32G4xx_LL_Driver
31 /** @defgroup CRS_LL CRS
35 /* Private types -------------------------------------------------------------*/
36 /* Private variables ---------------------------------------------------------*/
37 /* Private constants ---------------------------------------------------------*/
38 /* Private macros ------------------------------------------------------------*/
39 /* Private function prototypes -----------------------------------------------*/
41 /* Exported functions --------------------------------------------------------*/
42 /** @addtogroup CRS_LL_Exported_Functions
46 /** @addtogroup CRS_LL_EF_Init
51 * @brief De-Initializes CRS peripheral registers to their default reset values.
52 * @retval An ErrorStatus enumeration value:
53 * - SUCCESS: CRS registers are de-initialized
54 * - ERROR: not applicable
56 ErrorStatus
LL_CRS_DeInit(void)
58 LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_CRS
);
59 LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_CRS
);
78 #endif /* defined(CRS) */
84 #endif /* USE_FULL_LL_DRIVER */
86 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/