Files
TencentOS-tiny/board/NUCLEO_STM32G071RB/BSP/Inc/mcu_init.h
2019-11-17 23:48:54 +08:00

20 lines
294 B
C

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