board.h 479 字节
Newer Older
T
tyustli 已提交
1
/*
mysterywolf's avatar
mysterywolf 已提交
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
T
tyustli 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * 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 *******************/