1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2009-09-22     Bernard      add board.h to this bsp
9  * 2018-03-15     flyingcys    add amebaz
10  */
11 
12 // <<< Use Configuration Wizard in Context Menu >>>
13 #ifndef __BOARD_H__
14 #define __BOARD_H__
15 
16 #ifdef _LITTLE_ENDIAN
17 #undef _LITTLE_ENDIAN
18 #endif
19 
20 #ifdef SECTION
21 #undef SECTION
22 #endif
23 
24 #include <rthw.h>
25 #include <rtthread.h>
26 #include <rtdevice.h>
27 
28 void rt_hw_board_init(void);
29 
30 #endif
31 
32 //*** <<< end of configuration section >>>    ***
33