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