mcu_init.h 381 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
#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"
Y
yangqingsheng 已提交
11 12 13 14 15
#include "dcmi.h"
#include "dma.h"
#include "i2c.h"
#include "spi.h"
#include "tim.h"
16
#include "tos_k.h"
17 18 19 20 21 22 23
void board_init(void);
void SystemClock_Config(void);

#ifdef __cplusplus
}
#endif
#endif /*__ __MCU_INIT_H */