1 /**
2   ******************************************************************************
3   * @file    stm32l5xx_hal_msp_template.c
4   * @author  MCD Application Team
5   * @brief   HAL MSP module.
6   *          This file template is located in the HAL folder and should be copied
7   *          to the user folder.
8   *
9   ******************************************************************************
10   * @attention
11   *
12   * Copyright (c) 2019 STMicroelectronics.
13   * All rights reserved.
14   *
15   * This software is licensed under terms that can be found in the LICENSE file
16   * in the root directory of this software component.
17   * If no LICENSE file comes with this software, it is provided AS-IS.
18   *
19   ******************************************************************************
20   */
21 
22 /* Includes ------------------------------------------------------------------*/
23 #include "stm32l5xx_hal.h"
24 
25 /** @addtogroup STM32L5xx_HAL_Driver
26   * @{
27   */
28 
29 /** @defgroup HAL_MSP HAL MSP module driver
30   * @brief HAL MSP module.
31   * @{
32   */
33 
34 /* Private typedef -----------------------------------------------------------*/
35 /* Private define ------------------------------------------------------------*/
36 /* Private macro -------------------------------------------------------------*/
37 /* Private variables ---------------------------------------------------------*/
38 /* Private function prototypes -----------------------------------------------*/
39 /* Private functions ---------------------------------------------------------*/
40 
41 /** @defgroup HAL_MSP_Private_Functions
42   * @{
43   */
44 
45 /**
46   * @brief  Initialize the Global MSP.
47   * @retval None
48   */
HAL_MspInit(void)49 void HAL_MspInit(void)
50 {
51   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
52             modified by the user
53    */
54 }
55 
56 /**
57   * @brief  DeInitialize the Global MSP.
58   * @retval None
59   */
HAL_MspDeInit(void)60 void HAL_MspDeInit(void)
61 {
62   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
63             modified by the user
64    */
65 }
66 
67 /**
68   * @brief  Initialize the PPP MSP.
69   * @retval None
70   */
71 /*
72 void HAL_PPP_MspInit(void)
73 {
74 }
75 */
76 
77 /**
78   * @brief  DeInitialize the PPP MSP.
79   * @retval None
80   */
81 /*
82 void HAL_PPP_MspDeInit(void)
83 {
84 }
85 */
86 
87 /**
88   * @}
89   */
90 
91 /**
92   * @}
93   */
94 
95 /**
96   * @}
97   */
98 
99