source: S-port/trunk/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.c@ 1

Last change on this file since 1 was 1, checked in by AlexLir, 2 years ago
File size: 2.9 KB
Line 
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 * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
12 * All rights reserved.</center></h2>
13 *
14 * This software component is licensed by ST under BSD 3-Clause license,
15 * the "License"; You may not use this file except in compliance with the
16 * License. You may obtain a copy of the License at:
17 * opensource.org/licenses/BSD-3-Clause
18 *
19 ******************************************************************************
20 */
21
22/* Includes ------------------------------------------------------------------*/
23#include "stm32f4xx_hal.h"
24
25/** @addtogroup STM32F4xx_HAL_Driver
26 * @{
27 */
28
29/** @defgroup HAL_MSP HAL MSP
30 * @brief HAL MSP module.
31 * @{
32 */
33
34/* Private typedef -----------------------------------------------------------*/
35/* Private define ------------------------------------------------------------*/
36/* Private macro -------------------------------------------------------------*/
37/* Private variables ---------------------------------------------------------*/
38/* Private function prototypes -----------------------------------------------*/
39/* Private functions ---------------------------------------------------------*/
40
41/** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
42 * @{
43 */
44
45/**
46 * @brief Initializes the Global MSP.
47 * @note This function is called from HAL_Init() function to perform system
48 * level initialization (GPIOs, clock, DMA, interrupt).
49 * @retval None
50 */
51void HAL_MspInit(void)
52{
53
54}
55
56/**
57 * @brief DeInitializes the Global MSP.
58 * @note This functiona is called from HAL_DeInit() function to perform system
59 * level de-initialization (GPIOs, clock, DMA, interrupt).
60 * @retval None
61 */
62void HAL_MspDeInit(void)
63{
64
65}
66
67/**
68 * @brief Initializes the PPP MSP.
69 * @note This functiona is called from HAL_PPP_Init() function to perform
70 * peripheral(PPP) system level initialization (GPIOs, clock, DMA, interrupt)
71 * @retval None
72 */
73void HAL_PPP_MspInit(void)
74{
75
76}
77
78/**
79 * @brief DeInitializes the PPP MSP.
80 * @note This functiona is called from HAL_PPP_DeInit() function to perform
81 * peripheral(PPP) system level de-initialization (GPIOs, clock, DMA, interrupt)
82 * @retval None
83 */
84void HAL_PPP_MspDeInit(void)
85{
86
87}
88
89/**
90 * @}
91 */
92
93/**
94 * @}
95 */
96
97/**
98 * @}
99 */
100
101/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Note: See TracBrowser for help on using the repository browser.