metaonly module ti.bios.DPI

DPI Manager

legacy module to support DSP/BIOS 5.x, see DSP/BIOS 5.x docs for more info
Configuration settings sourced in ti/bios/DPI.xdc
var DPI = xdc.useModule('ti.bios.DPI');
per-instance config parameters
    var params = new DPI.Params// Instance config-params object;
        params.comment// Type a comment to identify this object = String "<add comments here>";
        params.name// Name of the DPI device = String "";
per-instance creation
    var inst = DPI.create// Create an instance-object(String name, params);
 
Instance Config Parameters

Configuration settings
var params = new DPI.Params;
// Instance config-params object
    params.allowVirtual = Bool false;
    // Set this property to true if you want to be able to use SIO_create to dynamically create multiple streams to use this DPI device
    params.comment = String "<add comments here>";
    // Type a comment to identify this object
    params.name = String "";
    // Name of the DPI device
 
config DPI.allowVirtual  // instance

Set this property to true if you want to be able to use SIO_create to dynamically create multiple streams to use this DPI device

Configuration settings
var params = new DPI.Params;
  ...
params.allowVirtual = Bool false;
 
 
config DPI.comment  // instance

Type a comment to identify this object

Configuration settings
var params = new DPI.Params;
  ...
params.comment = String "<add comments here>";
 
 
config DPI.name  // instance

Name of the DPI device

Configuration settings
var params = new DPI.Params;
  ...
params.name = String "";
 
Instance Creation

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