add support for GD32F310G-START

This commit is contained in:
iysheng
2022-04-13 11:42:53 +08:00
parent 28a3d252b3
commit 8669e4712b
151 changed files with 48105 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#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 */