Files

copied
Last update 2 years 1 month by PzCampus
Filessoftwarecoresrc
..
dcc
gpio.c
main.c
stm32l0xx_hal_msp.c
stm32l0xx_it.c
system_stm32l0xx.c
tim.c
stm32l0xx_hal_msp.c
/** ****************************************************************************** * @file stm32l0xx_hal_msp.c * @brief This file provides code for the MSP Initialization * and de-Initialization codes. ****************************************************************************** * @attention * * Copyright (c) 2022 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. * ****************************************************************************** */ #include "main.h" /** * Initializes the Global MSP. */ void HAL_MspInit(void) { __HAL_RCC_SYSCFG_CLK_ENABLE(); __HAL_RCC_PWR_CLK_ENABLE(); }
Report a bug