1 /**
2   ******************************************************************************
3   * @file    stm32f4xx_hal_msp_template.c
4   * @author  MCD Application Team
5   * @brief   This file contains the HAL System and Peripheral (PPP) MSP initialization
6   *          and de-initialization functions.
7   *          It should be copied to the application folder and renamed into 'stm32f4xx_hal_msp.c'.
8   ******************************************************************************
9   * @attention
10   *
11   * Copyright (c) 2017 STMicroelectronics.
12   * All rights reserved.
13   *
14   * This software is licensed under terms that can be found in the LICENSE file
15   * in the root directory of this software component.
16   * If no LICENSE file comes with this software, it is provided AS-IS.
17   *
18   ******************************************************************************
19   */
20 
21 /* Includes ------------------------------------------------------------------*/
22 #include "stm32f4xx_hal.h"
23 
24 /** @addtogroup STM32F4xx_HAL_Driver
25   * @{
26   */
27 
28 /** @defgroup HAL_MSP HAL MSP
29   * @brief HAL MSP module.
30   * @{
31   */
32 
33 /* Private typedef -----------------------------------------------------------*/
34 /* Private define ------------------------------------------------------------*/
35 /* Private macro -------------------------------------------------------------*/
36 /* Private variables ---------------------------------------------------------*/
37 /* Private function prototypes -----------------------------------------------*/
38 /* Private functions ---------------------------------------------------------*/
39 
40 /** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
41   * @{
42   */
43 
44 /**
45   * @brief  Initializes the Global MSP.
46   * @note   This function is called from HAL_Init() function to perform system
47   *         level initialization (GPIOs, clock, DMA, interrupt).
48   * @retval None
49   */
HAL_MspInit(void)50 void HAL_MspInit(void)
51 {
52 
53 }
54 
55 /**
56   * @brief  DeInitializes the Global MSP.
57   * @note   This functiona is called from HAL_DeInit() function to perform system
58   *         level de-initialization (GPIOs, clock, DMA, interrupt).
59   * @retval None
60   */
HAL_MspDeInit(void)61 void HAL_MspDeInit(void)
62 {
63 
64 }
65 
66 /**
67   * @brief  Initializes the PPP MSP.
68   * @note   This functiona is called from HAL_PPP_Init() function to perform
69   *         peripheral(PPP) system level initialization (GPIOs, clock, DMA, interrupt)
70   * @retval None
71   */
HAL_PPP_MspInit(void)72 void HAL_PPP_MspInit(void)
73 {
74 
75 }
76 
77 /**
78   * @brief  DeInitializes the PPP MSP.
79   * @note   This functiona is called from HAL_PPP_DeInit() function to perform
80   *         peripheral(PPP) system level de-initialization (GPIOs, clock, DMA, interrupt)
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 
100