1 /**
2   ******************************************************************************
3   * @file    stm32h5xx_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   * Copyright (c) 2023 STMicroelectronics.
20   * All rights reserved.
21   *
22   * This software is licensed under terms that can be found in the LICENSE file
23   * in the root directory of this software component.
24   * If no LICENSE file comes with this software, it is provided AS-IS.
25   *
26   ******************************************************************************
27   */
28 
29 /* Includes ------------------------------------------------------------------*/
30 #include "stm32h5xx_hal.h"
31 
32 /** @addtogroup STM32H5xx_HAL_Driver
33   * @{
34   */
35 
36 /** @defgroup HAL_MSP HAL MSP module driver
37   * @brief HAL MSP module.
38   * @{
39   */
40 
41 /* Private typedef -----------------------------------------------------------*/
42 /* Private define ------------------------------------------------------------*/
43 /* Private macro -------------------------------------------------------------*/
44 /* Private variables ---------------------------------------------------------*/
45 /* Private function prototypes -----------------------------------------------*/
46 /* Private functions ---------------------------------------------------------*/
47 
48 /** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
49   * @{
50   */
51 
52 /**
53   * @brief  Initializes the Global MSP.
54   * @retval None
55   */
HAL_MspInit(void)56 void HAL_MspInit(void)
57 {
58 
59 }
60 
61 /**
62   * @brief  DeInitializes the Global MSP.
63   * @retval None
64   */
HAL_MspDeInit(void)65 void HAL_MspDeInit(void)
66 {
67 
68 }
69 
70 /**
71   * @brief  Initializes the PPP MSP.
72   * @retval None
73   */
HAL_PPP_MspInit(void)74 void HAL_PPP_MspInit(void)
75 {
76 
77 }
78 
79 /**
80   * @brief  DeInitializes the PPP MSP.
81   * @retval None
82   */
HAL_PPP_MspDeInit(void)83 void HAL_PPP_MspDeInit(void)
84 {
85 
86 }
87 
88 /**
89   * @}
90   */
91 
92 /**
93   * @}
94   */
95 
96 /**
97   * @}
98   */
99