1 /**
2 ******************************************************************************
3 * @file stm32mp1xx_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) 2019 STMicroelectronics.
20 * All rights reserved.</center></h2>
21 *
22 * This software component is licensed by ST under BSD 3-Clause license,
23 * the "License"; You may not use this file except in compliance with the
24 * License. You may obtain a copy of the License at:
25 * opensource.org/licenses/BSD-3-Clause
26 *
27 ******************************************************************************
28 */
29
30 /* Includes ------------------------------------------------------------------*/
31 #include "stm32mp1xx_hal.h"
32
33 /** @addtogroup STM32MP1xx_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 HAL MSP Private Functions
50 * @{
51 */
52
53 /**
54 * @brief Initializes the Global MSP.
55 * @retval None
56 */
HAL_MspInit(void)57 void HAL_MspInit(void)
58 {
59
60 }
61
62 /**
63 * @brief DeInitializes the Global MSP.
64 * @retval None
65 */
HAL_MspDeInit(void)66 void HAL_MspDeInit(void)
67 {
68
69 }
70
71 /**
72 * @brief Initializes the PPP MSP.
73 * @retval None
74 */
HAL_PPP_MspInit(void)75 void HAL_PPP_MspInit(void)
76 {
77
78 }
79
80 /**
81 * @brief DeInitializes the PPP MSP.
82 * @retval None
83 */
HAL_PPP_MspDeInit(void)84 void HAL_PPP_MspDeInit(void)
85 {
86
87 }
88
89 /**
90 * @}
91 */
92
93 /**
94 * @}
95 */
96
97 /**
98 * @}
99 */
100
101 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
102