Mercurial > public > ostc4
comparison OtherSources/stm32f4xx_hal_msp.c @ 5:e65d01b6a17e
MOVE files for other applications
author | JeanDo |
---|---|
date | Fri, 15 Dec 2017 01:45:20 +0100 |
parents | |
children | 7801c5d8a562 |
comparison
equal
deleted
inserted
replaced
4:89a87ddc2e47 | 5:e65d01b6a17e |
---|---|
1 /** | |
2 ****************************************************************************** | |
3 * @file stm32f4xx_hal_msp.c | |
4 * @author heinrichs/weikamp, Christian Weikamp | |
5 * @date 05-Dec-2014 | |
6 * @version V0.0.1 | |
7 * @since 05-Dec-2014 | |
8 * @brief loader for the hardware specific stm32f4xx_hal_msp.c | |
9 * | |
10 @verbatim | |
11 ============================================================================== | |
12 ##### How to use ##### | |
13 ============================================================================== | |
14 @endverbatim | |
15 ****************************************************************************** | |
16 * @attention | |
17 * | |
18 * <h2><center>© COPYRIGHT(c) 2014 heinrichs weikamp</center></h2> | |
19 * | |
20 ****************************************************************************** | |
21 */ | |
22 | |
23 /* Includes ------------------------------------------------------------------*/ | |
24 | |
25 #include "ostc.h" | |
26 | |
27 #ifdef OSTC_ON_DISCOVERY_HARDWARE | |
28 #include "stm32f4xx_hal_msp_discovery.c" | |
29 #else | |
30 #include "stm32f4xx_hal_msp_hw1.c" | |
31 #endif | |
32 | |
33 /* Exported variables --------------------------------------------------------*/ | |
34 | |
35 /* Private types -------------------------------------------------------------*/ | |
36 | |
37 /* Private variables ---------------------------------------------------------*/ | |
38 | |
39 /* Private variables with external access via get_xxx() function -------------*/ | |
40 | |
41 /* Private function prototypes -----------------------------------------------*/ | |
42 | |
43 /* Exported functions --------------------------------------------------------*/ | |
44 | |
45 /* Private functions ---------------------------------------------------------*/ | |
46 | |
47 /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/ |