add stm32L053r8 support

add stm32L053r8 support
This commit is contained in:
supowang
2019-09-30 11:37:22 +08:00
parent 446b341232
commit 414dccf119
27 changed files with 5837 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
#ifndef __MCU_INIT_H
#define __MCU_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "stm32l0xx_hal.h"
#include "usart.h"
#include "i2c.h"
#include "gpio.h"
#include "tos.h"
void board_init(void);
void SystemClock_Config(void);
#ifdef __cplusplus
}
#endif
#endif /*__ __MCU_INIT_H */