push big array to DDR3
05-27-2011
07:30 PM
1,028件の閲覧回数
JackyUM
Contributor I
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi all,
I am using MSC8156EVM board. I have to use big array in the program which the hap and stack are too small to store all of them. Could anyone tell me how to push this kind of data to the DDR3 so that I can store a huge amount of data? Please give me a simple example
Thanks
1 返信
06-17-2011
09:45 AM
770件の閲覧回数
Jim95
Contributor III
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hello,
You can place a array in DDR or other memories like this:
#pragma data_seg_name ".local_data_ddr0"#pragma bss_seg_name ".local_data_ddr0_bss"uint8_t buffers_space[TEST_NUM_OF_BUFS*TEST_DATA_SIZE]; #pragma align buffers_space ARCH_CACHE_LINE_SIZE
Here it's in the DDR0 but you change the segment to place it in M3, DDR1 ...
Regards
Jimmy