1 /**
2 ******************************************************************************
3 * @file stm32g0xx_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) 2018 STMicroelectronics.
12 * All rights reserved.</center></h2>
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 "stm32g0xx_hal.h"
23
24 /** @addtogroup STM32G0xx_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 * @retval None
47 */
HAL_MspInit(void)48 void HAL_MspInit(void)
49 {
50 /* NOTE : This function is generated automatically by STM32CubeMX and eventually
51 modified by the user
52 */
53 }
54
55 /**
56 * @brief DeInitialize the Global MSP.
57 * @retval None
58 */
HAL_MspDeInit(void)59 void HAL_MspDeInit(void)
60 {
61 /* NOTE : This function is generated automatically by STM32CubeMX and eventually
62 modified by the user
63 */
64 }
65
66 /**
67 * @brief Initialize the PPP MSP.
68 * @retval None
69 */
HAL_PPP_MspInit(void)70 void HAL_PPP_MspInit(void)
71 {
72 /* NOTE : This function is generated automatically by STM32CubeMX and eventually
73 modified by the user
74 */
75 }
76
77 /**
78 * @brief DeInitialize the PPP MSP.
79 * @retval None
80 */
HAL_PPP_MspDeInit(void)81 void HAL_PPP_MspDeInit(void)
82 {
83 /* NOTE : This function is generated automatically by STM32CubeMX and eventually
84 modified by the user
85 */
86 }
87
88 /**
89 * @}
90 */
91
92 /**
93 * @}
94 */
95
96 /**
97 * @}
98 */
99
100