]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL/ST_Library/stm32f7xx_hal_msp_template.c
Update version number ready for V8.2.1 release.
[freertos] / FreeRTOS / Demo / CORTEX_M7_STM32F7_STM32756G-EVAL / ST_Library / stm32f7xx_hal_msp_template.c
1 /**\r
2   ******************************************************************************\r
3   * @file    stm32f7xx_hal_msp_template.c\r
4   * @author  MCD Application Team\r
5   * @version V0.3.0\r
6   * @date    06-March-2015\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) 2015 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 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 HAL MSP Private Functions\r
70   * @{\r
71   */\r
72 \r
73 /**\r
74   * @brief  Initializes the Global MSP.\r
75   * @retval None\r
76   */\r
77 void HAL_MspInit(void)\r
78 {\r
79   /* NOTE : This function is generated automatically by MicroXplorer and eventually  \r
80             modified by the user\r
81    */ \r
82 }\r
83 \r
84 /**\r
85   * @brief  DeInitializes the Global MSP.  \r
86   * @retval None\r
87   */\r
88 void HAL_MspDeInit(void)\r
89 {\r
90   /* NOTE : This function is generated automatically by MicroXplorer and eventually  \r
91             modified by the user\r
92    */\r
93 }\r
94 \r
95 /**\r
96   * @brief  Initializes the PPP MSP.\r
97   * @retval None\r
98   */\r
99 void HAL_PPP_MspInit(void)\r
100 {\r
101   /* NOTE : This function is generated automatically by MicroXplorer and eventually  \r
102             modified by the user\r
103    */ \r
104 }\r
105 \r
106 /**\r
107   * @brief  DeInitializes the PPP MSP.  \r
108   * @retval None\r
109   */\r
110 void HAL_PPP_MspDeInit(void)\r
111 {\r
112   /* NOTE : This function is generated automatically by MicroXplorer and eventually  \r
113             modified by the user\r
114    */\r
115 }\r
116 \r
117 /**\r
118   * @}\r
119   */\r
120 \r
121 /**\r
122   * @}\r
123   */\r
124 \r
125 /**\r
126   * @}\r
127   */\r
128 \r
129 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/\r