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