2020-12-10 11:02:26 +08:00
|
|
|
/*
|
2021-01-28 17:06:09 +08:00
|
|
|
* Copyright (c) 2020-2021, Bluetrum Development Team
|
2021-03-11 13:26:54 +08:00
|
|
|
*
|
2020-12-10 11:02:26 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2020-11-18 greedyhao first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOARD_H__
|
|
|
|
#define BOARD_H__
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
2021-03-11 18:20:09 +08:00
|
|
|
#include <ab32vgx.h>
|
2021-03-11 18:22:41 +08:00
|
|
|
#ifdef RT_USING_PIN
|
2021-03-11 18:20:09 +08:00
|
|
|
#include <drv_gpio.h>
|
2021-03-11 18:22:41 +08:00
|
|
|
#endif
|
|
|
|
#ifdef RT_USING_WDT
|
2021-03-11 18:20:09 +08:00
|
|
|
#include <drv_wdt.h>
|
2021-03-11 18:22:41 +08:00
|
|
|
#endif
|
|
|
|
|
2020-12-10 11:02:26 +08:00
|
|
|
|
|
|
|
#endif
|