module ti.sdo.ipc.transports.TransportNullSetup
C synopsis target-domain sourced in ti/sdo/ipc/transports/TransportNullSetup.xdc
 
config TransportNullSetup_priority  // module-wide

priority of the transport

C synopsis target-domain
extern const UInt TransportNullSetup_priority;
 
 
TransportNullSetup_attach()  // module-wide

Function that will be called in MessageQ_attach

C synopsis target-domain
Int TransportNullSetup_attach(UInt16 remoteProcId, Ptr sharedAddr);
 
 
TransportNullSetup_detach()  // module-wide

Function that will be called in MessageQ_detach

C synopsis target-domain
Int TransportNullSetup_detach(UInt16 remoteProcId);
 
 
TransportNullSetup_isRegistered()  // module-wide

Determines if a transport has been registered to a remote processor

C synopsis target-domain
Bool TransportNullSetup_isRegistered(UInt16 remoteProcId);
 
 
TransportNullSetup_sharedMemReq()  // module-wide

Shared memory required

C synopsis target-domain
SizeT TransportNullSetup_sharedMemReq(Ptr sharedAddr);
 
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId TransportNullSetup_Module_id();
// Get this module's unique id
 
Bool TransportNullSetup_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle TransportNullSetup_Module_heap();
// The heap from which this module allocates memory
 
Bool TransportNullSetup_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 TransportNullSetup_Module_getMask();
// Returns the diagnostics mask for this module
 
Void TransportNullSetup_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
XDCscript usage meta-domain sourced in ti/sdo/ipc/transports/TransportNullSetup.xdc
var TransportNullSetup = xdc.useModule('ti.sdo.ipc.transports.TransportNullSetup');
module-wide config parameters
 
 
 
config TransportNullSetup.priority  // module-wide

priority of the transport

XDCscript usage meta-domain
TransportNullSetup.priority = UInt 0;
 
C SYNOPSIS
 
metaonly config TransportNullSetup.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
TransportNullSetup.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 Sat, 11 Feb 2012 00:38:12 GMT