add support for cstx stm32f103re dtu board

This commit is contained in:
mculover666
2020-08-30 13:20:40 +08:00
parent 3312c96d02
commit b26f1dc0cd
43 changed files with 13211 additions and 0 deletions

View File

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