1 /**
2   ******************************************************************************
3   * @file    stm32u5xx_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) 2021 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 "stm32u5xx_hal.h"
32 
33 /** @addtogroup STM32U5xx_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  Initialize the PPP MSP.
73   * @retval None
74   */
75 /*
76 void HAL_PPP_MspInit(void)
77 {
78 }
79 */
80 
81 /**
82   * @brief  DeInitialize the PPP MSP.
83   * @retval None
84   */
85 /*
86 void HAL_PPP_MspDeInit(void)
87 {
88 }
89 */
90 
91 /**
92   * @}
93   */
94 
95 /**
96   * @}
97   */
98 
99 /**
100   * @}
101   */
102