1 /**
2 ******************************************************************************
3 * @file stm32l4xx_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 * @attention
10 *
11 * Copyright (c) 2017 STMicroelectronics.
12 * All rights reserved.
13 *
14 * This software is licensed under terms that can be found in the LICENSE file
15 * in the root directory of this software component.
16 * If no LICENSE file comes with this software, it is provided AS-IS.
17 *
18 ******************************************************************************
19 */
20
21 /* Includes ------------------------------------------------------------------*/
22 #include "stm32l4xx_hal.h"
23
24 /** @addtogroup STM32L4xx_HAL_Driver
25 * @{
26 */
27
28 /** @defgroup HAL_MSP HAL MSP module driver
29 * @brief HAL MSP module.
30 * @{
31 */
32
33 /* Private typedef -----------------------------------------------------------*/
34 /* Private define ------------------------------------------------------------*/
35 /* Private macro -------------------------------------------------------------*/
36 /* Private variables ---------------------------------------------------------*/
37 /* Private function prototypes -----------------------------------------------*/
38 /* Private functions ---------------------------------------------------------*/
39
40 /** @defgroup HAL_MSP_Private_Functions
41 * @{
42 */
43
44 /**
45 * @brief Initialize the Global MSP.
46 * @param None
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 * @param None
59 * @retval None
60 */
HAL_MspDeInit(void)61 void HAL_MspDeInit(void)
62 {
63 /* NOTE : This function is generated automatically by STM32CubeMX and eventually
64 modified by the user
65 */
66 }
67
68 /**
69 * @brief Initialize the PPP MSP.
70 * @param None
71 * @retval None
72 */
HAL_PPP_MspInit(void)73 void HAL_PPP_MspInit(void)
74 {
75 /* NOTE : This function is generated automatically by STM32CubeMX and eventually
76 modified by the user
77 */
78 }
79
80 /**
81 * @brief DeInitialize the PPP MSP.
82 * @param None
83 * @retval None
84 */
HAL_PPP_MspDeInit(void)85 void HAL_PPP_MspDeInit(void)
86 {
87 /* NOTE : This function is generated automatically by STM32CubeMX and eventually
88 modified by the user
89 */
90 }
91
92 /**
93 * @}
94 */
95
96 /**
97 * @}
98 */
99
100 /**
101 * @}
102 */
103