add STM32F407 HAL supoort

add STM32F407 HAL supoort
This commit is contained in:
supowang
2019-09-20 18:08:25 +08:00
parent 58aa703fa5
commit 2a5f244086
19 changed files with 4217 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 */