TrueStudio学习笔记(1)

最近公司收到keil的律师函,看来破解版的keil以后不能用了,只能找一款免费的stm32的ide。官方出了TrueStudio,学习一下。

1. 修改flash起始地址  项目文件/Debug/stm32_flash.ld下

/* Specify the memory areas */
MEMORY
{
  FLASH (rx)      : ORIGIN = 0x08001000, LENGTH = 508K /*起始地址改为0x8001000*/
  RAM (xrw)       : ORIGIN = 0x20000000, LENGTH = 64K
  MEMORY_B1 (rx)  : ORIGIN = 0x60000000, LENGTH = 0K
}

猜你喜欢

转载自blog.csdn.net/sierllen/article/details/82856596