2018-06-14 10:34:31 +08:00
|
|
|
/*
|
2021-03-29 07:25:10 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2018-06-14 10:34:31 +08:00
|
|
|
*
|
2021-03-29 07:25:10 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2018-06-14 10:34:31 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2009-09-22 Bernard add board.h to this bsp
|
|
|
|
* 2018-03-15 flyingcys add amebaz
|
|
|
|
*/
|
|
|
|
|
|
|
|
// <<< Use Configuration Wizard in Context Menu >>>
|
|
|
|
#ifndef __BOARD_H__
|
|
|
|
#define __BOARD_H__
|
|
|
|
|
2018-10-25 16:36:46 +08:00
|
|
|
#ifdef _LITTLE_ENDIAN
|
|
|
|
#undef _LITTLE_ENDIAN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SECTION
|
|
|
|
#undef SECTION
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <rthw.h>
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rtdevice.h>
|
2018-06-14 10:34:31 +08:00
|
|
|
|
|
|
|
void rt_hw_board_init(void);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//*** <<< end of configuration section >>> ***
|