metaonly module ti.bios.DHL

DHL Manager

legacy module to support DSP/BIOS 5.x, see DSP/BIOS 5.x docs for more info
Configuration settings sourced in ti/bios/DHL.xdc
var DHL = xdc.useModule('ti.bios.DHL');
module-wide config parameters
per-instance config parameters
    var params = new DHL.Params// Instance config-params object;
        params.comment// This property is no longer supported = String undefined;
        params.hstChannel// This property is no longer supported = String undefined;
        params.name// This property is no longer supported = String undefined;
per-instance creation
    var inst = DHL.create// Create an instance-object(String name, params);
 
 
config DHL.OBJMEMSEG  // module-wide

This property is no longer supported

Configuration settings
DHL.OBJMEMSEG = Ptr null;
 
Instance Config Parameters

Configuration settings
var params = new DHL.Params;
// Instance config-params object
    params.comment = String undefined;
    // This property is no longer supported
    params.hstChannel = String undefined;
    // This property is no longer supported
    params.name = String undefined;
    // This property is no longer supported
 
config DHL.comment  // instance

This property is no longer supported

Configuration settings
var params = new DHL.Params;
  ...
params.comment = String undefined;
 
 
config DHL.hstChannel  // instance

This property is no longer supported

Configuration settings
var params = new DHL.Params;
  ...
params.hstChannel = String undefined;
 
 
config DHL.name  // instance

This property is no longer supported

Configuration settings
var params = new DHL.Params;
  ...
params.name = String undefined;
 
Instance Creation

Configuration settings
var params = new DHL.Params;
// Allocate instance config-params
params.config =   ...
// Assign individual configs
 
var inst = DHL.create(String name, params);
// Create an instance-object
generated on Sat, 11 May 2013 02:22:24 GMT