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