add base support for cstx_stm32f1_dtu board

This commit is contained in:
mculover666
2020-08-29 12:07:01 +08:00
parent 51217526a2
commit b986732795
21 changed files with 4097 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 "stm32f1xx_hal.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 */