You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
401 B
24 lines
401 B
/*
|
|
* Copyright (c) 2020-2021, Bluetrum Development Team
|
|
*
|
|
* 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>
|
|
#include <ab32vgx.h>
|
|
#ifdef RT_USING_PIN
|
|
#include <drv_gpio.h>
|
|
#endif
|
|
#ifdef RT_USING_WDT
|
|
#include <drv_wdt.h>
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|