add support for ALIENTEK_EXPLORER_STM32F407ZGT6

add support for ALIENTEK_EXPLORER_STM32F407ZGT
This commit is contained in:
supowang
2019-09-24 11:26:35 +08:00
parent c081991983
commit b7082e7b35
19 changed files with 4211 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#ifndef __MCU_INIT_H
#define __MCU_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "stm32f4xx_hal.h"
#include "usart.h"
#include "gpio.h"
#include "tos.h"
void board_init(void);
void SystemClock_Config(void);
#ifdef __cplusplus
}
#endif
#endif /*__ __MCU_INIT_H */