1 /**
2 ******************************************************************************
3 * @file stm32l0xx_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) 2016 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 @verbatim
21 ===============================================================================
22 ##### How to use this driver #####
23 ===============================================================================
24 [..]
25 This file is eventually modified by the user.
26
27 @endverbatim
28 ******************************************************************************
29 */
30
31 /* Includes ------------------------------------------------------------------*/
32 #include "stm32l0xx_hal.h"
33
34 /** @addtogroup STM32L0xx_HAL_Driver
35 * @{
36 */
37
38 /** @defgroup HAL_MSP
39 * @brief HAL MSP module.
40 * @{
41 */
42
43 /* Private typedef -----------------------------------------------------------*/
44 /* Private define ------------------------------------------------------------*/
45 /* Private macro -------------------------------------------------------------*/
46 /* Private variables ---------------------------------------------------------*/
47 /* Private function prototypes -----------------------------------------------*/
48 /* Private functions ---------------------------------------------------------*/
49
50 /** @defgroup HAL_MSP_Private_Functions
51 * @{
52 */
53
54 /**
55 * @brief Initializes the Global BSP.
56 * @param None
57 * @retval None
58 */
HAL_MspInit(void)59 void HAL_MspInit(void)
60 {
61 /* NOTE : This function is eventually modified by the user */
62 }
63
64 /**
65 * @brief DeInitializes the Global MSP.
66 * @param None
67 * @retval None
68 */
HAL_MspDeInit(void)69 void HAL_MspDeInit(void)
70 {
71 /* NOTE : This function is eventually modified by the user */
72 }
73
74 /**
75 * @brief Initializes the PPP MSP.
76 * @param None
77 * @retval None
78 */
HAL_PPP_MspInit(void)79 void HAL_PPP_MspInit(void)
80 {
81 /* NOTE : This function is eventually modified by the user */
82 }
83
84 /**
85 * @brief DeInitializes the PPP MSP.
86 * @param None
87 * @retval None
88 */
HAL_PPP_MspDeInit(void)89 void HAL_PPP_MspDeInit(void)
90 {
91 /* NOTE : This function is eventually modified by the user */
92 }
93
94 /**
95 * @}
96 */
97
98 /**
99 * @}
100 */
101
102 /**
103 * @}
104 */
105
106
107