metaonly module ti.bios.RTDX

RTDX module

legacy module to support BIOS 5.x, see BIOS 5.x docs for more info
XDCspec summary sourced in ti/bios/RTDX.xdc
metaonly module RTDX {  ...
instance:  ...
XDCscript usage meta-domain
var RTDX = xdc.useModule('ti.bios.RTDX');
module-wide config parameters
per-instance config parameters
    var params = new RTDX.Params// Instance config-params object;
        params.channelMode// This property is no longer supported = String undefined;
        params.comment// This property is no longer supported = String undefined;
        params.name// This property is no longer supported = String "";
per-instance creation
    var inst = RTDX.create// Create an instance-object( String name, params );
 
XDCspec declarations sourced in ti/bios/RTDX.xdc
package ti.bios;
 
metaonly module RTDX {
module-wide config parameters
 
 
instance:
per-instance config parameters
    config String name// This property is no longer supported = "";
per-instance creation
    create// Create an instance-object( String name );
}
 
config RTDX.BUFSIZE  // module-wide

This property is no longer supported

XDCscript usage meta-domain
RTDX.BUFSIZE = UInt16 undefined;
 
 
config RTDX.ENABLERTDX  // module-wide

This property is no longer supported

XDCscript usage meta-domain
RTDX.ENABLERTDX = Bool undefined;
 
 
config RTDX.INTERRUPTMASK  // module-wide

This property is no longer supported

XDCscript usage meta-domain
RTDX.INTERRUPTMASK = UInt undefined;
 
 
config RTDX.MODE  // module-wide

This property is no longer supported

XDCscript usage meta-domain
RTDX.MODE = String undefined;
 
 
config RTDX.RTDXDATASEG  // module-wide

This property is no longer supported

XDCscript usage meta-domain
RTDX.RTDXDATASEG = MEM.Instance undefined;
 
 
per-instance config parameters

XDCscript usage meta-domain
var params = new RTDX.Params;
// Instance config-params object
    params.channelMode = String undefined;
    // This property is no longer supported
    params.comment = String undefined;
    // This property is no longer supported
    params.name = String "";
    // This property is no longer supported
 
config RTDX.channelMode  // per-instance

This property is no longer supported

XDCscript usage meta-domain
var params = new RTDX.Params;
  ...
params.channelMode = String undefined;
 
 
config RTDX.comment  // per-instance

This property is no longer supported

XDCscript usage meta-domain
var params = new RTDX.Params;
  ...
params.comment = String undefined;
 
 
config RTDX.name  // per-instance

This property is no longer supported

XDCscript usage meta-domain
var params = new RTDX.Params;
  ...
params.name = String "";
 
 
per-instance creation

XDCscript usage meta-domain
var params = new RTDX.Params;
// Allocate instance config-params
params.config =   ...
// Assign individual configs
 
var inst = RTDX.create( String name, params );
// Create an instance-object
generated on Mon, 21 Dec 2009 19:43:46 GMT