source: asp3_wo_tecs/trunk/arch/arm_m_gcc/stm32f4xx_stm32cube/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.c@ 303

Last change on this file since 303 was 303, checked in by ertl-honda, 7 years ago

nucleo_f401re依存部の追加

File size: 4.1 KB
Line 
1/**
2 ******************************************************************************
3 * @file stm32f4xx_hal_msp_template.c
4 * @author MCD Application Team
5 * @version V1.4.1
6 * @date 09-October-2015
7 * @brief This file contains the HAL System and Peripheral (PPP) MSP initialization
8 * and de-initialization functions.
9 * It should be copied to the application folder and renamed into 'stm32f4xx_hal_msp.c'.
10 ******************************************************************************
11 * @attention
12 *
13 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
14 *
15 * Redistribution and use in source and binary forms, with or without modification,
16 * are permitted provided that the following conditions are met:
17 * 1. Redistributions of source code must retain the above copyright notice,
18 * this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright notice,
20 * this list of conditions and the following disclaimer in the documentation
21 * and/or other materials provided with the distribution.
22 * 3. Neither the name of STMicroelectronics nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
32 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
34 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 ******************************************************************************
38 */
39
40/* Includes ------------------------------------------------------------------*/
41#include "stm32f4xx_hal.h"
42
43/** @addtogroup STM32F4xx_HAL_Driver
44 * @{
45 */
46
47/** @defgroup HAL_MSP HAL MSP
48 * @brief HAL MSP module.
49 * @{
50 */
51
52/* Private typedef -----------------------------------------------------------*/
53/* Private define ------------------------------------------------------------*/
54/* Private macro -------------------------------------------------------------*/
55/* Private variables ---------------------------------------------------------*/
56/* Private function prototypes -----------------------------------------------*/
57/* Private functions ---------------------------------------------------------*/
58
59/** @defgroup HAL_MSP_Private_Functions HAL MSP Private Functions
60 * @{
61 */
62
63/**
64 * @brief Initializes the Global MSP.
65 * @note This function is called from HAL_Init() function to perform system
66 * level initialization (GPIOs, clock, DMA, interrupt).
67 * @retval None
68 */
69void HAL_MspInit(void)
70{
71
72}
73
74/**
75 * @brief DeInitializes the Global MSP.
76 * @note This functiona is called from HAL_DeInit() function to perform system
77 * level de-initialization (GPIOs, clock, DMA, interrupt).
78 * @retval None
79 */
80void HAL_MspDeInit(void)
81{
82
83}
84
85/**
86 * @brief Initializes the PPP MSP.
87 * @note This functiona is called from HAL_PPP_Init() function to perform
88 * peripheral(PPP) system level initialization (GPIOs, clock, DMA, interrupt)
89 * @retval None
90 */
91void HAL_PPP_MspInit(void)
92{
93
94}
95
96/**
97 * @brief DeInitializes the PPP MSP.
98 * @note This functiona is called from HAL_PPP_DeInit() function to perform
99 * peripheral(PPP) system level de-initialization (GPIOs, clock, DMA, interrupt)
100 * @retval None
101 */
102void HAL_PPP_MspDeInit(void)
103{
104
105}
106
107/**
108 * @}
109 */
110
111/**
112 * @}
113 */
114
115/**
116 * @}
117 */
118
119/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Note: See TracBrowser for help on using the repository browser.