1 /**
2 ******************************************************************************
3 * @file stm32f0xx_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 @verbatim
10 ===============================================================================
11 ##### How to use this driver #####
12 ===============================================================================
13 [..]
14
15 @endverbatim
16 ******************************************************************************
17 * @attention
18 *
19 * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
20 *
21 * Redistribution and use in source and binary forms, with or without modification,
22 * are permitted provided that the following conditions are met:
23 * 1. Redistributions of source code must retain the above copyright notice,
24 * this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright notice,
26 * this list of conditions and the following disclaimer in the documentation
27 * and/or other materials provided with the distribution.
28 * 3. Neither the name of STMicroelectronics nor the names of its contributors
29 * may be used to endorse or promote products derived from this software
30 * without specific prior written permission.
31 *
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
33 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
35 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
38 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
40 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42 *
43 ******************************************************************************
44 */
45
46 /* Includes ------------------------------------------------------------------*/
47 #include "stm32f0xx_hal.h"
48
49 /** @addtogroup STM32F0xx_HAL_Driver
50 * @{
51 */
52
53 /** @defgroup HAL_MSP HAL MSP module driver
54 * @brief HAL MSP module.
55 * @{
56 */
57
58 /* Private typedef -----------------------------------------------------------*/
59 /* Private define ------------------------------------------------------------*/
60 /* Private macro -------------------------------------------------------------*/
61 /* Private variables ---------------------------------------------------------*/
62 /* Private function prototypes -----------------------------------------------*/
63 /* Private functions ---------------------------------------------------------*/
64
65 /** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
66 * @{
67 */
68
69 /**
70 * @brief Initializes the Global MSP.
71 * @retval None
72 */
HAL_MspInit(void)73 void HAL_MspInit(void)
74 {
75
76 }
77
78 /**
79 * @brief DeInitializes the Global MSP.
80 * @retval None
81 */
HAL_MspDeInit(void)82 void HAL_MspDeInit(void)
83 {
84
85 }
86
87 /**
88 * @brief Initializes the PPP MSP.
89 * @retval None
90 */
HAL_PPP_MspInit(void)91 void HAL_PPP_MspInit(void)
92 {
93
94 }
95
96 /**
97 * @brief DeInitializes the PPP MSP.
98 * @retval None
99 */
HAL_PPP_MspDeInit(void)100 void HAL_PPP_MspDeInit(void)
101 {
102
103 }
104
105 /**
106 * @}
107 */
108
109 /**
110 * @}
111 */
112
113 /**
114 * @}
115 */
116
117 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
118