Files
TencentOS-tiny/board/NUCLEO_STM32L073RZ/BSP/Inc/mcu_init.h
2019-12-27 14:41:18 +08:00

21 lines
311 B
C

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