CW 10.6 TAD K64 Ram usage

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

CW 10.6 TAD K64 Ram usage

Jump to solution
654 Views
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?

Labels (1)
Tags (4)
0 Kudos
1 Solution
461 Views
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

View solution in original post

0 Kudos
1 Reply
462 Views
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 Kudos