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