26 lines
479 B
C
26 lines
479 B
C
/*
|
|
* Copyright (c) 2006-2021, 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 *******************/
|