1 /**
2   ******************************************************************************
3   * @file    stm32f3xx_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) 2016 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 "stm32f3xx_hal.h"
32 
33 /** @addtogroup STM32F3xx_HAL_Driver
34   * @{
35   */
36 
37 /** @defgroup HAL_MSP HAL MSP module
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 /* Exported functions ---------------------------------------------------------*/
48 
49 /** @defgroup HAL_MSP_Exported_Functions HAL MSP Exported 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