module ti.sdo.ipc.family.tci663x.MultiProcSetup
C synopsis target-domain sourced in ti/sdo/ipc/family/tci663x/MultiProcSetup.xdc
 
config MultiProcSetup_A_invalidProcessor  // module-wide

Assert raised when the target core is not in the MultiProc name list

C synopsis target-domain
extern const Assert_Id MultiProcSetup_A_invalidProcessor;
 
 
config MultiProcSetup_configureProcId  // module-wide

By default the MultiProcSetup module will set the ID at startup

C synopsis target-domain
extern const Bool MultiProcSetup_configureProcId;
 
DETAILS
By setting this flag to false, the initialization step is suppressed.
 
config MultiProcSetup_procMap  // module-wide

ProcId -> CoreId mapping (indexed by procId)

C synopsis target-domain
extern const UInt16 MultiProcSetup_procMap[];
 
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId MultiProcSetup_Module_id();
// Get this module's unique id
 
Bool MultiProcSetup_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle MultiProcSetup_Module_heap();
// The heap from which this module allocates memory
 
Bool MultiProcSetup_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 MultiProcSetup_Module_getMask();
// Returns the diagnostics mask for this module
 
Void MultiProcSetup_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
XDCscript usage meta-domain sourced in ti/sdo/ipc/family/tci663x/MultiProcSetup.xdc
var MultiProcSetup = xdc.useModule('ti.sdo.ipc.family.tci663x.MultiProcSetup');
module-wide config parameters
        msg: "A_invalidProcessor: This core is not present in the MultiProc name list"
    };
 
 
 
config MultiProcSetup.A_invalidProcessor  // module-wide

Assert raised when the target core is not in the MultiProc name list

XDCscript usage meta-domain
MultiProcSetup.A_invalidProcessor = Assert.Desc {
    msg: "A_invalidProcessor: This core is not present in the MultiProc name list"
};
 
C SYNOPSIS
 
config MultiProcSetup.configureProcId  // module-wide

By default the MultiProcSetup module will set the ID at startup

XDCscript usage meta-domain
MultiProcSetup.configureProcId = Bool true;
 
DETAILS
By setting this flag to false, the initialization step is suppressed.
C SYNOPSIS
 
config MultiProcSetup.procMap  // module-wide

ProcId -> CoreId mapping (indexed by procId)

XDCscript usage meta-domain
MultiProcSetup.procMap = UInt16[] undefined;
 
C SYNOPSIS
 
metaonly config MultiProcSetup.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
MultiProcSetup.common$ = Types.Common$ undefined;
 
DETAILS
All modules have this configuration parameter. Its name contains the '$' character to ensure it does not conflict with configuration parameters declared by the module. This allows new configuration parameters to be added in the future without any chance of breaking existing modules.
generated on Tue, 22 May 2012 23:44:47 GMT