module xdc.rov.runtime.Monitor

ROV support for the pure C "module" Mod.c[h]

The file Board_serialMon.txt (contained in this package) illustrates how to use the runtime monitor Mon.[ch] with a TI-RTOS UART driver.
C synopsis target-domain sourced in xdc/rov/runtime/Monitor.xdc
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId Monitor_Module_id();
// Get this module's unique id
 
Bool Monitor_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle Monitor_Module_heap();
// The heap from which this module allocates memory
 
Bool Monitor_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 Monitor_Module_getMask();
// Returns the diagnostics mask for this module
 
Void Monitor_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
Configuration settings sourced in xdc/rov/runtime/Monitor.xdc
var Monitor = xdc.useModule('xdc.rov.runtime.Monitor');
module-wide config parameters
 
 
metaonly config Monitor.common$  // module-wide

Common module configuration parameters

Configuration settings
Monitor.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, 09 Aug 2017 16:38:11 GMT