2021-09-07 20:08:26 +08:00

27 lines
514 B
C

/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-01-04 iysheng first version
*/
#ifndef __BOARD_H__
#define __BOARD_H__
#include <target.h>
#include "drv_gpio.h"
#define V85XX_SRAM_SIZE 48
#define V85XX_SRAM_END (0x20000000 + V85XX_SRAM_SIZE * 1024)
extern int __bss_end;
#define HEAP_BEGIN (&__bss_end)
#define HEAP_END V85XX_SRAM_END
#endif