SRAM Lower

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

SRAM Lower

3,318 Views
AsafTv
Contributor II

How do i use SRM Lower the compile generate link error .heap will not fit in region SRAM_UPPER 

can i put heap in SRAM_LOWER?

advice

0 Kudos
Reply
15 Replies

3,291 Views
AsafTv
Contributor II

how do i place parameters in SRAM LOWER

all the parameters placed automatically in SRAM Upper.

0 Kudos
Reply

3,289 Views
ErichStyger
Specialist I

See the articles I have posted. It depends on the tool chain used, but in essence you can change/modify the linker file for this.

0 Kudos
Reply

3,308 Views
vicentegomez
NXP TechSupport
NXP TechSupport

Can you please tell us the part number that you are using?

Thanks

 

0 Kudos
Reply

3,300 Views
AsafTv
Contributor II

mk64fn1m0xx12

0 Kudos
Reply

3,299 Views
AsafTv
Contributor II

i want the compiler use both RAMs as one RAM without ak me for that.

what is the usage those RAMs?

why upper and lower?

There is advantage for each RAMs?

0 Kudos
Reply

3,295 Views
ErichStyger
Specialist I

You might have a read at the following articles and the discussions there:

https://mcuoneclipse.com/2013/07/10/freertos-heap-with-segmented-kinetis-k-sram/

https://mcuoneclipse.com/2017/09/18/using-multiple-memory-regions-with-the-freertos-heap/

Basically the reason is that there are two/multiple mermory controllers. That way a better memory performance could be achieved.The important point is that you shall not combine the two memory areas, to prevent a variable/object crossing that memory boundary. Otherwise you will see a hard fault.

More details in the above articles, and as well ways how to use both memory areas.

I hope this helps,

Erich

0 Kudos
Reply

3,246 Views
AsafTv
Contributor II

what is the way to place const struct in fix address in flash?

the way to do it in IAR is @#pragma location=0x3000

How to do it in gcc? 

0 Kudos
Reply

3,203 Views
DanielRuvalcaba
NXP TechSupport
NXP TechSupport

Hello,

Please take a look to these websites. I believe you can find useful information that might help you.

https://developer.arm.com/documentation/ka002853/latest

https://community.nxp.com/t5/Kinetis-Microcontrollers/Store-a-variable-in-ROM-FLASH/m-p/328690

Have a good day, Daniel.

0 Kudos
Reply

3,180 Views
AsafTv
Contributor II

Place Parameters at fix address in flash for example const uint8 buf[10] in address 0x3000

advice

0 Kudos
Reply

3,179 Views
AsafTv
Contributor II

const uint8 buf[10] __attribute__ ((section(".ARM.__at_0x3000"))) = {0xAA,0xaa......};

is not work

advice

0 Kudos
Reply

3,159 Views
DanielRuvalcaba
NXP TechSupport
NXP TechSupport

I can see that you are declaring an array and storing data at the same time. Could you please try declaring the variable with the desired address first, and once it is declared, store the respective data to the variable?

Also verify that the address is not overlapped with your code in RAM.

Regards, Daniel.

0 Kudos
Reply

3,140 Views
AsafTv
Contributor II

i try to place const param in fix address (FLASH)

0 Kudos
Reply

3,076 Views
DanielRuvalcaba
NXP TechSupport
NXP TechSupport

Hello,

I just tried the following example and it worked on my side. Could you please help us verify that you are trying to write in a valid memory address?

const uint8_t TEST[4] __attribute__((aligned(0x00004000))) = {'T', 'E', 'S', 'T'};

Regards, Daniel.

0 Kudos
Reply

3,061 Views
AsafTv
Contributor II

Hi,

Thank you for your help.

this line is not work the address i get in the map file for my const param is 0x20000

0 Kudos
Reply

3,013 Views
DanielRuvalcaba
NXP TechSupport
NXP TechSupport
0 Kudos
Reply