1 /**
2 ******************************************************************************
3 * @file stm32f2xx_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 @endverbatim
26 ******************************************************************************
27 */
28
29 /* Includes ------------------------------------------------------------------*/
30 #include "stm32f2xx_hal.h"
31
32 /** @addtogroup STM32F2xx_HAL_Driver
33 * @{
34 */
35
36 /** @defgroup HAL_MSP HAL MSP
37 * @brief HAL MSP module.
38 * @{
39 */
40
41 /* Private typedef -----------------------------------------------------------*/
42 /* Private define ------------------------------------------------------------*/
43 /* Private macro -------------------------------------------------------------*/
44 /* Private variables ---------------------------------------------------------*/
45 /* Private function prototypes -----------------------------------------------*/
46 /* Private functions ---------------------------------------------------------*/
47
48 /** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
49 * @{
50 */
51
52 /**
53 * @brief Initializes the Global MSP.
54 * @retval None
55 */
HAL_MspInit(void)56 void HAL_MspInit(void)
57 {
58 }
59
60 /**
61 * @brief DeInitializes the Global MSP.
62 * @retval None
63 */
HAL_MspDeInit(void)64 void HAL_MspDeInit(void)
65 {
66 }
67
68 /**
69 * @brief Initializes the PPP MSP.
70 * @retval None
71 */
HAL_PPP_MspInit(void)72 void HAL_PPP_MspInit(void)
73 {
74 }
75
76 /**
77 * @brief DeInitializes the PPP MSP.
78 * @retval None
79 */
HAL_PPP_MspDeInit(void)80 void HAL_PPP_MspDeInit(void)
81 {
82 }
83
84 /**
85 * @}
86 */
87
88 /**
89 * @}
90 */
91
92 /**
93 * @}
94 */
95
96