图中的BEGIN : origin = 0x080000, length = 0x000002和 BOOT_RSVD : origin = 0x000002, length = 0x000120 是什么意思呢?分别代表什么地址?在做bootloader时,boot起始地址怎么配置呢?APP的入口地址怎么确认呢?谢谢各位
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
BEGIN是代码的其起始位置。
BOOT_RSVD是BOOT ROM的保留空间,这部分空间不为用户所使用。
一般情况下,bootloader和app分别放在不同的flash sector。
上电优先运行bootloader,一般会将bootloader放在flashA。将APP根据程序大小放在其它Flash,程序入口即app起始地址。