Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2 | Rev 3 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /** |
1 | /** |
2 | ****************************************************************************** |
2 | ****************************************************************************** |
3 | * @file stm32f1xx_hal_msp_template.c |
3 | * @file stm32f1xx_hal_msp_template.c |
4 | * @author MCD Application Team |
4 | * @author MCD Application Team |
5 | * @brief HAL BSP module. |
5 | * @brief HAL BSP module. |
6 | * This file template is located in the HAL folder and should be copied |
6 | * This file template is located in the HAL folder and should be copied |
7 | * to the user folder. |
7 | * to the user folder. |
8 | ****************************************************************************** |
8 | ****************************************************************************** |
9 | * @attention |
9 | * @attention |
10 | * |
10 | * |
11 | * <h2><center>© Copyright (c) 2016 STMicroelectronics. |
11 | * Copyright (c) 2016 STMicroelectronics. |
12 | * All rights reserved.</center></h2> |
12 | * All rights reserved. |
13 | * |
13 | * |
14 | * This software component is licensed by ST under BSD 3-Clause license, |
14 | * This software is licensed under terms that can be found in the LICENSE file |
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: |
15 | * in the root directory of this software component. |
17 | * opensource.org/licenses/BSD-3-Clause |
16 | * If no LICENSE file comes with this software, it is provided AS-IS. |
18 | * |
17 | * |
19 | ****************************************************************************** |
18 | ****************************************************************************** |
20 | */ |
19 | */ |
21 | 20 | ||
22 | /* Includes ------------------------------------------------------------------*/ |
21 | /* Includes ------------------------------------------------------------------*/ |
23 | #include "stm32f1xx_hal.h" |
22 | #include "stm32f1xx_hal.h" |
24 | 23 | ||
25 | /** @addtogroup STM32F1xx_HAL_Driver |
24 | /** @addtogroup STM32F1xx_HAL_Driver |
26 | * @{ |
25 | * @{ |
27 | */ |
26 | */ |
28 | 27 | ||
29 | /** @defgroup HAL_MSP HAL_MSP |
28 | /** @defgroup HAL_MSP HAL_MSP |
30 | * @brief HAL MSP module. |
29 | * @brief HAL MSP module. |
31 | * @{ |
30 | * @{ |
32 | */ |
31 | */ |
33 | 32 | ||
34 | /* Private typedef -----------------------------------------------------------*/ |
33 | /* Private typedef -----------------------------------------------------------*/ |
35 | /* Private define ------------------------------------------------------------*/ |
34 | /* Private define ------------------------------------------------------------*/ |
36 | /* Private macro -------------------------------------------------------------*/ |
35 | /* Private macro -------------------------------------------------------------*/ |
37 | /* Private variables ---------------------------------------------------------*/ |
36 | /* Private variables ---------------------------------------------------------*/ |
38 | /* Private function prototypes -----------------------------------------------*/ |
37 | /* Private function prototypes -----------------------------------------------*/ |
39 | /* Private functions ---------------------------------------------------------*/ |
38 | /* Private functions ---------------------------------------------------------*/ |
40 | 39 | ||
41 | /** @defgroup HAL_MSP_Exported_Functions HAL MSP Exported Functions |
40 | /** @defgroup HAL_MSP_Exported_Functions HAL MSP Exported Functions |
42 | * @{ |
41 | * @{ |
43 | */ |
42 | */ |
44 | 43 | ||
45 | /** |
44 | /** |
46 | * @brief Initializes the Global MSP. |
45 | * @brief Initializes the Global MSP. |
47 | * @retval None |
46 | * @retval None |
48 | */ |
47 | */ |
49 | void HAL_MspInit(void) |
48 | void HAL_MspInit(void) |
50 | { |
49 | { |
51 | 50 | ||
52 | } |
51 | } |
53 | 52 | ||
54 | /** |
53 | /** |
55 | * @brief DeInitializes the Global MSP. |
54 | * @brief DeInitializes the Global MSP. |
56 | * @retval None |
55 | * @retval None |
57 | */ |
56 | */ |
58 | void HAL_MspDeInit(void) |
57 | void HAL_MspDeInit(void) |
59 | { |
58 | { |
60 | 59 | ||
61 | } |
60 | } |
62 | 61 | ||
63 | /** |
62 | /** |
64 | * @brief Initializes the PPP MSP. |
63 | * @brief Initializes the PPP MSP. |
65 | * @retval None |
64 | * @retval None |
66 | */ |
65 | */ |
67 | void HAL_PPP_MspInit(void) |
66 | void HAL_PPP_MspInit(void) |
68 | { |
67 | { |
69 | 68 | ||
70 | } |
69 | } |
71 | 70 | ||
72 | /** |
71 | /** |
73 | * @brief DeInitializes the PPP MSP. |
72 | * @brief DeInitializes the PPP MSP. |
74 | * @retval None |
73 | * @retval None |
75 | */ |
74 | */ |
76 | void HAL_PPP_MspDeInit(void) |
75 | void HAL_PPP_MspDeInit(void) |
77 | { |
76 | { |
78 | 77 | ||
79 | } |
78 | } |
80 | 79 | ||
81 | /** |
80 | /** |
82 | * @} |
81 | * @} |
83 | */ |
82 | */ |
84 | 83 | ||
85 | /** |
84 | /** |
86 | * @} |
85 | * @} |
87 | */ |
86 | */ |
88 | 87 | ||
89 | /** |
88 | /** |
90 | * @} |
89 | * @} |
91 | */ |
90 | */ |
92 | 91 | ||
93 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
- | |
- | 92 |