5
+ − 1 /**
+ − 2 ******************************************************************************
+ − 3 * @file stm32f4xx_hal_msp.c
36
+ − 4 * @author heinrichs weikamp gmbh
5
+ − 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****/