HI,
I have been able to run the OpenMP examples from the Processor SDK RTOS on the evm-k2h.
Now, I am trying to integrate with MPM so that I can push the binary to the DSP from the ARM and also get the traces in the /sys/kernel/debug/remoteproc/ file system.
I have followed the steps in the MCSDK user guide (
) and added the following in the SYS/BIOS configuration:
Program.global.sysMinBufSize = 0x8000;
var System = xdc.useModule('xdc.runtime.System');
var SysMin = xdc.useModule('xdc.runtime.SysMin');
System.SupportProxy = SysMin;
SysMin.bufSize = Program.global.sysMinBufSize;
var Resource = xdc.useModule('ti.ipc.remoteproc.Resource');
Resource.loadSegment = Program.platform.dataMemory;
However, I am not able to get that to work. The binary seems to be pushed to the DSP properly but can't get the traces to work.
Is this supported with OpenMP?
Regards,
- David

