20 lines
303 B
C
20 lines
303 B
C
#ifndef __MCU_INIT_H
|
|
#define __MCU_INIT_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "main.h"
|
|
#include "bsp_eth.h"
|
|
#include "bsp_led.h"
|
|
#include "bsp_debug_usart.h"
|
|
#include "tos_k.h"
|
|
|
|
void board_init(void);
|
|
void SystemClock_Config(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /*__ __MCU_INIT_H */
|