KDS 3.2.0 How to increase HEAP size without Processor Expert

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

KDS 3.2.0 How to increase HEAP size without Processor Expert

1,985 次查看
isaotakashima
Contributor IV

I'm making the new project using Kinetis SDK 2.0 by KDS 3.2.0 for the TWR-K65F180M.

I cannot make the new Processor Expert project by KDS 3.2.0, then I made the Kinetis SDK 2.x project.

I can increase HEAP size by edit MK65FN2M0xxx18_flash.ld as below.

HEAP_SIZE  = DEFINED(__heap_size__)  ? __heap_size__  : 0x1000;    /* increase HEAP size from 0x0400; */

STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x0400;

 

Can I increase HEAP size by GUI?

 

Please advise as soon as possible.

 

Best regards,

Takashima

标签 (1)
标记 (1)
1 回复

1,367 次查看
BlackNight
NXP Employee
NXP Employee

Hi Takashima,

No, there is no specific GUI. But you can specify the heap and stack size with the linker commands (or actually in the linker panel GUI), see

https://mcuoneclipse.com/2016/04/17/changing-heap-and-stack-size-for-nxp-kinetis-sdk-v2-0-gcc-projec...

I hope this helps,

Erich