add support for ALIENTEK_Pandora_STM32L475

This commit is contained in:
QinYUN575
2019-09-26 14:35:02 +08:00
parent b1436e7431
commit ff50fe9633
26 changed files with 7144 additions and 0 deletions

View File

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