metaonly module ti.bios.LCK

LCK module

legacy module to support BIOS 5.x, see BIOS 5.x docs for more info
XDCspec summary sourced in ti/bios/LCK.xdc
metaonly module LCK {  ...
instance:  ...
XDCscript usage meta-domain
var LCK = xdc.useModule('ti.bios.LCK');
module-wide config parameters
per-instance config parameters
    var params = new LCK.Params// Instance config-params object;
        params.comment// Type a comment to identify this object = String "";
        params.name// Specify the name of the object = String "";
per-instance creation
    var inst = LCK.create// Create an instance-object( String name, params );
 
XDCspec declarations sourced in ti/bios/LCK.xdc
package ti.bios;
 
metaonly module LCK {
module-wide config parameters
 
 
instance:
per-instance config parameters
    config String name// Specify the name of the object = "";
per-instance creation
    create// Create an instance-object( String name );
}
 
config LCK.OBJMEMSEG  // module-wide

The memory segment that contains the LCK objects

XDCscript usage meta-domain
LCK.OBJMEMSEG = MEM.Instance null;
 
 
per-instance config parameters

XDCscript usage meta-domain
var params = new LCK.Params;
// Instance config-params object
    params.comment = String "";
    // Type a comment to identify this object
    params.name = String "";
    // Specify the name of the object
 
config LCK.comment  // per-instance

Type a comment to identify this object

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

Specify the name of the object

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

XDCscript usage meta-domain
var params = new LCK.Params;
// Allocate instance config-params
params.config =   ...
// Assign individual configs
 
var inst = LCK.create( String name, params );
// Create an instance-object
generated on Tue, 01 Sep 2009 00:36:03 GMT