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.
22 lines
474 B
22 lines
474 B
5 months ago
|
/*
|
||
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2021-01-28 flybreak first version
|
||
|
*/
|
||
|
|
||
|
#ifndef __BOARD_H__
|
||
|
#define __BOARD_H__
|
||
|
|
||
|
#define PICO_SRAM_SIZE 256
|
||
|
#define PICO_SRAM_END (0x20000000 + PICO_SRAM_SIZE * 1024)
|
||
|
|
||
|
extern int __bss_end__;
|
||
|
#define HEAP_BEGIN (&__bss_end__)
|
||
|
#define HEAP_END ((void *)PICO_SRAM_END)
|
||
|
|
||
|
#endif
|