]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL/System_Keil/stm32f7xx_hal_msp.c
Update version number ready for V8.2.1 release.
[freertos] / FreeRTOS / Demo / CORTEX_M7_STM32F7_STM32756G-EVAL / System_Keil / stm32f7xx_hal_msp.c
1 /**\r
2   ******************************************************************************\r
3   * @file    stm32f7xx_hal_msp_template.c\r
4   * @author  MCD Application Team\r
5   * @version V0.0.1\r
6   * @date    21-October-2014\r
7   * @brief   HAL MSP module.\r
8   *          This file template is located in the HAL folder and should be copied \r
9   *          to the user folder.\r
10   *         \r
11   @verbatim\r
12  ===============================================================================\r
13                      ##### How to use this driver #####\r
14  ===============================================================================\r
15     [..]\r
16     This file is generated automatically by MicroXplorer and eventually modified \r
17     by the user\r
18 \r
19   @endverbatim\r
20   ******************************************************************************\r
21   * @attention\r
22   *\r
23   * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>\r
24   *\r
25   * Redistribution and use in source and binary forms, with or without modification,\r
26   * are permitted provided that the following conditions are met:\r
27   *   1. Redistributions of source code must retain the above copyright notice,\r
28   *      this list of conditions and the following disclaimer.\r
29   *   2. Redistributions in binary form must reproduce the above copyright notice,\r
30   *      this list of conditions and the following disclaimer in the documentation\r
31   *      and/or other materials provided with the distribution.\r
32   *   3. Neither the name of STMicroelectronics nor the names of its contributors\r
33   *      may be used to endorse or promote products derived from this software\r
34   *      without specific prior written permission.\r
35   *\r
36   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"\r
37   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
38   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r
39   * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r
40   * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
41   * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r
42   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r
43   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r
44   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
45   * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
46   *\r
47   ******************************************************************************\r
48   */ \r
49 \r
50 /* Includes ------------------------------------------------------------------*/\r
51 #include "stm32f7xx_hal.h"\r
52 \r
53 /** @addtogroup STM32F7xx_HAL_Driver\r
54   * @{\r
55   */\r
56 \r
57 /** @defgroup HAL_MSP\r
58   * @brief HAL MSP module.\r
59   * @{\r
60   */\r
61 \r
62 /* Private typedef -----------------------------------------------------------*/\r
63 /* Private define ------------------------------------------------------------*/\r
64 /* Private macro -------------------------------------------------------------*/\r
65 /* Private variables ---------------------------------------------------------*/\r
66 /* Private function prototypes -----------------------------------------------*/\r
67 /* Private functions ---------------------------------------------------------*/\r
68 \r
69 /** @defgroup HAL_MSP_Private_Functions\r
70   * @{\r
71   */\r
72 \r
73 /**\r
74   * @brief  Initializes the Global MSP.\r
75   * @param  None\r
76   * @retval None\r
77   */\r
78 void HAL_MspInit(void)\r
79 {\r
80   /* NOTE : This function is generated automatically by MicroXplorer and eventually  \r
81             modified by the user\r
82    */ \r
83 }\r
84 \r
85 /**\r
86   * @brief  DeInitializes the Global MSP.\r
87   * @param  None  \r
88   * @retval None\r
89   */\r
90 void HAL_MspDeInit(void)\r
91 {\r
92   /* NOTE : This function is generated automatically by MicroXplorer and eventually  \r
93             modified by the user\r
94    */\r
95 }\r
96 \r
97 /**\r
98   * @brief  Initializes the PPP MSP.\r
99   * @param  None\r
100   * @retval None\r
101   */\r
102 void HAL_PPP_MspInit(void)\r
103 {\r
104   /* NOTE : This function is generated automatically by MicroXplorer and eventually  \r
105             modified by the user\r
106    */ \r
107 }\r
108 \r
109 /**\r
110   * @brief  DeInitializes the PPP MSP.\r
111   * @param  None  \r
112   * @retval None\r
113   */\r
114 void HAL_PPP_MspDeInit(void)\r
115 {\r
116   /* NOTE : This function is generated automatically by MicroXplorer and eventually  \r
117             modified by the user\r
118    */\r
119 }\r
120 \r
121 /**\r
122   * @}\r
123   */\r
124 \r
125 /**\r
126   * @}\r
127   */\r
128 \r
129 /**\r
130   * @}\r
131   */\r
132 \r
133 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/\r