Part Number: AM5716
Hi,
We are having the above mentioned error message in CCS ROV view. Or if the below is added to app.cfg remoteCustom2InUseError is replaced by remoteCustom1InUseError...
var GateMP = xdc.useModule('ti.sdo.ipc.GateMP');
GateMP.RemoteSystemProxy = xdc.useModule('ti.sdo.ipc.gates.GateHWSpinlock');
GateMP.RemoteCustom1Proxy = xdc.useModule('ti.sdo.ipc.gates.GateMPSupportNull');
GateMP.RemoteCustom2Proxy = xdc.useModule('ti.sdo.ipc.gates.GateMPSupportNull');
When I checked the code under '..\ti\ipc_3_50_04_08\packages\ti\sdo\ipc\GateMP.xs' I found the TODO comments. hinting that this is a XDC/ROV problem only:
function viewInitModule(view, mod)
{
// ...
if (mod.proxyMap[1] == 1) {
view.numGatesCustom1 = mod.numRemoteCustom1;
try {
var remoteCustom1InUse = Program.fetchArray(
mod.remoteCustom1InUse$fetchDesc,
mod.remoteCustom1InUse.$addr,
mod.numRemoteCustom1);
}
catch (e) {
throw("Problem fetching remoteCustom1InUse" + e); //TODO
Can we ignore this error message or is there another reason causing this?
Thanks,
André