metaonly module ti.sdo.tiler.Settings

Global configuration settings for the ti.sdo.tiler package

XDCscript usage meta-domain sourced in ti/sdo/tiler/Settings.xdc
var Settings = xdc.useModule('ti.sdo.tiler.Settings');
module-wide constants & types
        const Settings.OperSys_Linux;
        const Settings.OperSys_WinCE;
        const Settings.OperSys_RTOS;
module-wide config parameters
 
 
enum Settings.OperSys

Operating systems used for hosting the tiler manager

XDCscript usage meta-domain
values of type Settings.OperSys
    const Settings.OperSys_Linux;
    const Settings.OperSys_WinCE;
    const Settings.OperSys_RTOS;
 
VALUES
OperSys_Linux — The tiler manager is running on Linux.
OperSys_WinCE — The tiler manager is running on WindowsCE.
OperSys_RTOS — The tiler manager is running on a real-time operating system which does not make a distinction between user and kernel modes.
 
config Settings.tilerManagerOS  // module-wide

Specifies operating system on which the tiler manager is running

XDCscript usage meta-domain
Settings.tilerManagerOS = Settings.OperSys undefined;
 
DETAILS
When configuring a program which is running on the same core as the tiler manager, set this config param to the host operating system. If the tiler manager is not part of the executable, then leave it undefined.
For example, if building an executable which is running on the same core as the tiler manager, (e.g. a local tiler client or the tiler daemon) then set this config param to the OS type. If building an executable which is making tiler calls to another core (e.g. a remote tiler client), then leave this config param undefined.
generated on Tue, 14 Aug 2012 20:08:50 GMT