stm32l1xx_hal_msp.c 571 B

1234567891011121314151617181920212223
  1. /**
  2. ******************************************************************************
  3. * File Name : stm32l1xx_hal_msp.c
  4. * Description : This file provides code for the MSP Initialization
  5. * and de-Initialization codes.
  6. */
  7. /* Includes ------------------------------------------------------------------*/
  8. #include "core/main.h"
  9. /**
  10. * Initializes the Global MSP.
  11. */
  12. void HAL_MspInit(void)
  13. {
  14. // __HAL_RCC_COMP_CLK_ENABLE();
  15. __HAL_RCC_SYSCFG_CLK_ENABLE();
  16. __HAL_RCC_PWR_CLK_ENABLE();
  17. /* System interrupt init*/
  18. }