File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ rtthread_a32.elf
6767rtthread_a32.map
6868```
6969
70+ - 若需切换版本进行调试,请先在` bsp\phytium\libraries\phytium_standalone_sdk ` 目录下删除现有的` phytium_standalone_sdk ` 工具包,然后重新执行上述指令以拉取指定版本。
71+
7072### RT-Thread env 环境
7173
7274#### RT-Thread
Original file line number Diff line number Diff line change @@ -64,3 +64,6 @@ menu "Standalone Setting"
6464
6565endmenu
6666
67+ config KERNEL_ASPACE_START
68+ hex
69+ default 0x1000
Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ rtthread_a64.elf
6767rtthread_a64.map
6868```
6969
70+ - 若需切换版本进行调试,请先在` bsp\phytium\libraries\phytium_standalone_sdk ` 目录下删除现有的` phytium_standalone_sdk ` 工具包,然后重新执行上述指令以拉取指定版本。
71+
7072### RT-Thread env 环境
7173
7274#### RT-Thread
Original file line number Diff line number Diff line change 5454
5555/* restrict virtual address on usage of RT_NULL */
5656#ifndef KERNEL_VADDR_START
57+ #ifdef KERNEL_ASPACE_START
58+ #define KERNEL_VADDR_START KERNEL_ASPACE_START
59+ #else
5760#define KERNEL_VADDR_START (ARCH_RAM_OFFSET + ARCH_TEXT_OFFSET)
5861#endif
62+ #endif /* KERNEL_VADDR_START */
63+
5964
6065volatile unsigned long MMUTable [512 ] __attribute__((aligned (4 * 1024 )));
6166
You can’t perform that action at this time.
0 commit comments