cancel
Showing results for 
Search instead for 
Did you mean: 

display address CCM

ludovic Wiart
Associate II
Posted on September 15, 2017 at 17:52

Hi,

I try to move some array in CCM on stm32f415.

I modify the ld script with 

 CCM_SRAM   (rwx) : ORIGIN = 0x10000000, LENGTH = 64K 

.ccmram :

{

. = ALIGN(4);

_sccmram = .; /* create a global symbol at ccmram start */

*(.ccmram)

*(.ccmram*)

. = ALIGN(4);

_eccmram = .; /* create a global symbol at ccmram end */

}> CCM_SRAM

In my programe I had 2 global array:

char buffer[1024];

char in_ccram_buffer[1024] __attribute__((section('ccmram')));

and I print there address :

printf (' buffer = %08x    in_ccram_buffer = %08x\n',&buffer,&in_ccram_buffer  );

the result is :

buffer = 20001a3c    in_ccram_buffer = 20000ce4

I don't understand why the 

in_ccram_buffer isn't in 0x1000.....

#ccm #sram-ccm
1 ACCEPTED SOLUTION

Accepted Solutions
Posted on September 15, 2017 at 18:01

 ,

 ,

Keil example

 ,

Look at how the symbol is described in the .MAP file, and why that would end up in SRAM

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

View solution in original post

3 REPLIES 3
Posted on September 15, 2017 at 17:57

Use DOT CCMRAM perhaps?

char in_ccram_buffer[1024] __attribute__((section('.ccmram')));

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Posted on September 15, 2017 at 18:01

 ,

 ,

Keil example

 ,

Look at how the symbol is described in the .MAP file, and why that would end up in SRAM

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Posted on September 18, 2017 at 10:22

Yes It's better with a dot .

Thanks a lot