Other Parts Discussed in Thread: MMWCAS-DSP-EVM
Hi
I am develoloping radar system using PROCESSOR_SDK_RADAR_03_08_00_00 and MMWCAS-DSP-EVM(TDA2SX).
Following error was displayed in teraterm.
=====================================
[IPU1-0] 34.406087 s: ### XDC ASSERT - ERROR CALLBACK START ###
[IPU1-0] 34.406179 s:
[IPU1-0] 34.406362 s: out of memory: handle=0x86a19df4, size=67784704
[IPU1-0] 34.406453 s:
[IPU1-0] 34.406484 s: ### XDC ASSERT - ERROR CALLBACK END ###
=====================================
I understood that the reason why this error was occuered was set to process more data than the allocated memory area,by confirming following thread.
=======
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/893888/ccs-tda2sx-out-of-memory?tisearch=e2e-sitesearch&keymatch=out%2520of%2520memory%253A%2520handle%253D0x86a19df4%2520RADAR
=======
Can you tell me following thing?
1:
If I checked line 103 of "C: \ PROCESSOR_SDK_RADAR_03_08_00_00 \ vision_sdk \ apps \ build \tda2x\xmem_segment_definition_bios.xs", IPU1-0 is currently allocated 16MB of memory.
Is it possible to allocate 64MB for the board and software environment currently in use?
xmem_segment_definition_bios.xs
=======
103 IPU1_0_CODE_SIZE = 12*MB;
104 IPU1_0_DATA_SIZE = 16*MB;
=======
2:
If it is possible to be changed, is there anything other than line 103 of "mem_segment_definition_bios.xs" that should be changed?
Thanks!