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.
BOOTLOADER的APP入口地址为0x0010100 ,APP的CMD中
VECTORS (X) : origin=0x00010100 length=0x00000020
FLASH0 (RX) : origin=0x00010120 length=0x000AFEE0
STACKS (RW) : origin=0x08000000 length=0x00001500
RAM (RW) : origin=0x08001500 length=0x0001eb00
编译APP后生成的BIN文件,用串口下载后,APP程序运行的速度变慢了。
把APP的CMD改为,不烧写BOOTLOADER,
VECTORS (X) : origin=0x00000000 length=0x00000020
FLASH0 (RX) : origin=0x00000020 length=0x000BFFE0
STACKS (RW) : origin=0x08000000 length=0x00001500
RAM (RW) : origin=0x08001500 length=0x0001eb00
编译APP后生成的BIN文件,通过UNIFLASH下载后,APP程序运行速度正常。