add stm32h750 support

add stm32h750 support
This commit is contained in:
supowang
2021-02-01 16:21:34 +08:00
parent f8ed488066
commit db32f5ecdf
506 changed files with 925876 additions and 3 deletions

View File

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