CW 10.6 TAD K64 Ram usage

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

CW 10.6 TAD K64 Ram usage

跳至解决方案
805 次查看
leepenn
Contributor III

Hi,

 

I am evaluating the advantages of the K64 over the K60, the first thing I notice is that when the projects for the K64 do not show that the 256k ram is available in TAD just 126K is available. Is this a CW 10.6 limitation?

标签 (1)
标记 (4)
0 项奖励
回复
1 解答
612 次查看
leepenn
Contributor III

I found the issue was in the K64 Linker file.

   /* kernel space starts after RAM variables (Location of MQX Kernel data + MQX heap) */

    end_of_kd   (RW): ORIGIN = 0x2000FFF0, LENGTH = 0x00000000

needed to be:

   /* kernel space starts after RAM variables (Location of MQX Kernel data + MQX heap) */

    end_of_kd   (RW): ORIGIN = 0x2002FFF0, LENGTH = 0x00000000

在原帖中查看解决方案

0 项奖励
回复
1 回复
613 次查看
leepenn
Contributor III

I found the issue was in the K64 Linker file.

   /* kernel space starts after RAM variables (Location of MQX Kernel data + MQX heap) */

    end_of_kd   (RW): ORIGIN = 0x2000FFF0, LENGTH = 0x00000000

needed to be:

   /* kernel space starts after RAM variables (Location of MQX Kernel data + MQX heap) */

    end_of_kd   (RW): ORIGIN = 0x2002FFF0, LENGTH = 0x00000000

0 项奖励
回复