add support for ALIENTEK_Elite_STM32F103

This commit is contained in:
supowang
2019-09-23 17:31:48 +08:00
parent 3c2e4debef
commit 5bd3765ae5
19 changed files with 3727 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.h"
void board_init(void);
void SystemClock_Config(void);
#ifdef __cplusplus
}
#endif
#endif /*__ __MCU_INIT_H */