add support for ALIENTEK-MiniSTM32F103RCT6

TencentOS tiny hello world on ALIENTEK-MiniSTM32F103RCT6
This commit is contained in:
supowang
2019-09-23 16:23:52 +08:00
parent b68480232e
commit 3c2e4debef
19 changed files with 3704 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 */