Files
TencentOS-tiny/board/STM32F746NGH6_discovery/BSP/Inc/mcu_init.h
2019-10-10 21:01:16 +08:00

22 lines
296 B
C

#ifndef __MCU_INIT_H
#define __MCU_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "stm32f7xx_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 */