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
#include <xdc/rov/runtime/Monitor.h>
 
 
Configuration settings sourced in xdc/rov/runtime/Monitor.xdc
var Monitor = xdc.useModule('xdc.rov.runtime.Monitor');
module-wide functions
 
 
metaonly Monitor.print()  // module-wide

Append string to the end of the console buffer

Configuration settings
Monitor.print(String str, ...) returns Void
 
DETAILS
Output is displayed via this module's ROV "Console" view.
Separate lines are identified by a trailing '\n' character.
 
metaonly Monitor.println()  // module-wide

Append string plus a trailing new line to the console buffer

Configuration settings
Monitor.println(String str, ...) returns Void
 
DETAILS
Output is displayed via this module's ROV "Console" view.
generated on Tue, 13 Oct 2020 04:41:52 GMT