module ti.sdo.utils.loggers.LogMFP

Manages control calls to Logger that implements ILoggerMFP

C synopsis target-domain sourced in ti/sdo/utils/loggers/LogMFP.xdc
 
LogMFP_control()  // module-wide

A hook for sending commands to the logger. For example, this can be used to re-configure the timestamp display format

C synopsis target-domain
Void LogMFP_control(Int cmd, UArg cmdArgs);
 
ARGUMENTS
cmd — control command
cmdArgs — command argument
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId LogMFP_Module_id();
// Get this module's unique id
 
Bool LogMFP_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle LogMFP_Module_heap();
// The heap from which this module allocates memory
 
Bool LogMFP_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 LogMFP_Module_getMask();
// Returns the diagnostics mask for this module
 
Void LogMFP_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
XDCscript usage meta-domain sourced in ti/sdo/utils/loggers/LogMFP.xdc
var LogMFP = xdc.useModule('ti.sdo.utils.loggers.LogMFP');
local proxy modules
        LogMFP.Proxy.delegate$ = ILoggerMFP.Module null
        LogMFP.Proxy.abstractInstances$ = false
module-wide config parameters
 
 
proxy LogMFP.Proxy

Proxy that needs to be bound to an ILoggerMFP delegate

XDCscript usage meta-domain
LogMFP.Proxy = ILoggerMFP.Module null
// some delegate module inheriting the ILoggerMFP interface
    LogMFP.Proxy.delegate$ = ILoggerMFP.Module null
    // explicit access to the currently bound delegate module
    LogMFP.Proxy.abstractInstances$ = false
    // use indirect runtime function calls if true
 
 
metaonly config LogMFP.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
LogMFP.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 Wed, 20 Jul 2011 20:40:02 GMT