123456789101112131415161718192021222324252627282930313233 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022-02-22 airm2m first version
- */
- #ifndef __BOARD_H__
- #define __BOARD_H__
- #include "app_inc.h"
- #include <rtthread.h>
- #include "rtconfig.h"
- #ifdef __CC_ARM
- extern int Image$$RW_IRAM1$$ZI$$Limit;
- #define HEAP_BEGIN ((void *)&Image$$RW_IRAM1$$ZI$$Limit)
- #elif __ICCARM__
- #pragma section="HEAP"
- #define HEAP_BEGIN (__segment_end("HEAP"))
- #else
- extern int __bss_end;
- #define HEAP_BEGIN ((void *)&__bss_end)
- #endif
- #define HEAP_END (void*)(0x20000000 + 0xA0000)
- void rt_hw_board_init(void);
- int rt_vbus_do_init(void);
- #endif
|