add BearPi L5 support

add BearPi L5 support
This commit is contained in:
supowang
2021-03-15 14:32:11 +08:00
parent 0c2af37b96
commit 13d5ea043a
53 changed files with 15374 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#ifndef __MCU_INIT_H
#define __MCU_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "adc.h"
#include "dac.h"
#include "i2c.h"
#include "usart.h"
#include "octospi.h"
#include "sdmmc.h"
#include "spi.h"
#include "gpio.h"
#include "stdio.h"
#include "lcd_spi2_drv.h"
#include "tos_k.h"
void board_init(void);
void SystemClock_Config(void);
#ifdef __cplusplus
}
#endif
#endif /*__ __MCU_INIT_H */