4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 02:59:23 +08:00
2019-07-24 17:03:26 +08:00

26 lines
479 B
C

/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2019-07-23 tyustli first version
*
*/
#ifndef __BOARD__
#define __BOARD__
#include "gd32vf103.h"
extern void *_end;
extern void *_heap_end;
#define HEAP_BEGIN &_end
#define HEAP_END &_heap_end
void rt_hw_board_init(void);
#endif /* __BOARD__ */
/******************** end of file *******************/