add stm32f746 discovery support

This commit is contained in:
supowang
2019-10-10 21:01:16 +08:00
parent dac5888bd4
commit 7150e5bdaf
19 changed files with 3845 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#ifndef __MCU_INIT_H
#define __MCU_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "stm32f7xx_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 */