| config CLK.CONFIGURETIMER // module-wide |
 |
This property is no longer supported
CLK.CONFIGURETIMER = Bool undefined;
| config CLK.CONONDEBUG // module-wide |
 |
This property is no longer supported
CLK.CONONDEBUG = Bool undefined;
| config CLK.ENABLECLK // module-wide |
 |
If true, Use the on-device timer to drive high and low resolution
times and to trigger execution of CLK functions. On some devices
with ENABLEHTIME property, this enables only low-resolution timer
CLK.ENABLECLK = Bool true;
| config CLK.ENABLEHTIME // module-wide |
 |
This property enables the high-resolution timer. (C64x+ only)
CLK.ENABLEHTIME = Bool true;
| config CLK.FIXTDDR // module-wide |
 |
This property is no longer supported
CLK.FIXTDDR = Bool undefined;
| config CLK.HIRESTIME // module-wide |
 |
This property is no longer supported
CLK.HIRESTIME = Bool undefined;
| config CLK.INPUTCLK // module-wide |
 |
This property is no longer supported
CLK.INPUTCLK = Float undefined;
| config CLK.MICROSECONDS // module-wide |
 |
The number of microseconds between interrupts
CLK.MICROSECONDS = Float 1000;
| config CLK.OBJMEMSEG // module-wide |
 |
The memory segment that contains the CLK objects
| config CLK.POSTINITFXN // module-wide |
 |
This property is no longer supported
CLK.POSTINITFXN = String undefined;
| config CLK.PRD // module-wide |
 |
This property is no longer supported
CLK.PRD = Int16 undefined;
| config CLK.RESETTIMER // module-wide |
 |
Allow DSP/BIOS to initialize the timer to the mode specified by TIMMODE
and release the timer from reset. (C64x+ only)
CLK.RESETTIMER = Bool undefined;
| config CLK.SPECIFYRATE // module-wide |
 |
This property is no longer supported
CLK.SPECIFYRATE = Bool undefined;
| config CLK.STARTBOTH // module-wide |
 |
This property is no longer supported
CLK.STARTBOTH = Bool undefined;
| config CLK.TCRTDDR // module-wide |
 |
This property is no longer supported
CLK.TCRTDDR = Int undefined;
| config CLK.TIMER5BASE // module-wide |
 |
This property sets the GPTimer5 base address.
(C64x+ OMAP devices only)
CLK.TIMER5BASE = UInt32 undefined;
| config CLK.TIMER6BASE // module-wide |
 |
This property sets the GPTimer6 base address.
(C64x+ OMAP devices only)
CLK.TIMER6BASE = UInt32 undefined;
| config CLK.TIMER7BASE // module-wide |
 |
This property sets the GPTimer7 base address.
(C64x+ OMAP devices only)
CLK.TIMER7BASE = UInt32 undefined;
| config CLK.TIMER8BASE // module-wide |
 |
This property sets the GPTimer8 base address.
(C64x+ OMAP devices only)
CLK.TIMER8BASE = UInt32 undefined;
| config CLK.TIMERSELECT // module-wide |
 |
Select the on-device timer to drive the timer services for CLK
CLK.TIMERSELECT = String undefined;
| config CLK.TIMMODE // module-wide |
 |
This property specifies the timer mode. (C64x+ only)
CLK.TIMMODE = String "32-bit unchained";
| config CLK.WHICHHIRESTIMER // module-wide |
 |
Selects the high-resolution timer
CLK.WHICHHIRESTIMER = String null;
| Instance Config Parameters |
 |
var params = new CLK.Params;
// Instance config-params object
params.comment = String "<add comments here>";
// Type a comment to identify this object
params.fxn = String undefined;
// The function to be executed when the timer interrupt occurs
params.name = String "";
// Use to save the name of the object
params.order = Int16 undefined;
// This property is no longer supported
| config CLK.comment // instance |
 |
Type a comment to identify this object
var params = new CLK.Params;
...
params.comment = String "<add comments here>";
| config CLK.fxn // instance |
 |
The function to be executed when the timer interrupt occurs
var params = new CLK.Params;
...
params.fxn = String undefined;
| config CLK.name // instance |
 |
Use to save the name of the object
var params = new CLK.Params;
...
params.name = String "";
| config CLK.order // instance |
 |
This property is no longer supported
var params = new CLK.Params;
...
params.order = Int16 undefined;
| Instance Creation |
 |
// Allocate instance config-params
params.config = ...
// Assign individual configs
var inst = CLK.create(String name, params);
// Create an instance-object