module ti.catalog.arm.cortexm4.tiva.l.Boot

Tiva Low power Embedded device Boot Support

The Boot module supports boot initialization for the Tiva low power devices. A special boot init function is created based on the configuration settings for this module. This function is hooked into the xdc.runtime.Startup.firstFxns[] array and called very early at boot time. [ more ... ]
C synopsis target-domain sourced in ti/catalog/arm/cortexm4/tiva/l/Boot.xdc
DETAILS
The Boot module supports boot initialization for the Tiva low power devices. A special boot init function is created based on the configuration settings for this module. This function is hooked into the xdc.runtime.Startup.firstFxns[] array and called very early at boot time.
The code to support the boot module is placed in a separate section named ".text:.bootCodeSection" to allow placement of this section in the linker .cmd file if necessary. This section is a subsection of the ".text" section so this code will be placed into the .text section unless explicitly placed, either through Program.sectMap or through a linker command file.
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId Boot_Module_id();
// Get this module's unique id
 
Bool Boot_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle Boot_Module_heap();
// The heap from which this module allocates memory
 
Bool Boot_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 Boot_Module_getMask();
// Returns the diagnostics mask for this module
 
Void Boot_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
Configuration settings sourced in ti/catalog/arm/cortexm4/tiva/l/Boot.xdc
var Boot = xdc.useModule('ti.catalog.arm.cortexm4.tiva.l.Boot');
module-wide constants & types
    var obj = new Boot.ModuleView// ;
        obj.configureClocks = Bool  ...
        obj.disableWatchdog = Bool  ...
module-wide config parameters
 
 
metaonly struct Boot.ModuleView
Configuration settings
var obj = new Boot.ModuleView;
 
    obj.configureClocks = Bool  ...
    obj.disableWatchdog = Bool  ...
 
 
metaonly config Boot.common$  // module-wide

Common module configuration parameters

Configuration settings
Boot.common$ = Types.Common$ undefined;
 
DETAILS
All modules have this configuration parameter. Its name contains the '$' character to ensure it does not conflict with configuration parameters declared by the module. This allows new configuration parameters to be added in the future without any chance of breaking existing modules.
 
metaonly config Boot.configureClocks  // module-wide

Clock configuration flag, default is false

Configuration settings
Boot.configureClocks = Bool false;
 
DETAILS
Set to true to automatically configure the clocks.
 
metaonly config Boot.disableWatchdog  // module-wide

Watchdog disable configuration flag, default is true

Configuration settings
Boot.disableWatchdog = Bool true;
 
DETAILS
Set to false to disable the disabling of the watchdog.
 
metaonly config Boot.rovViewInfo  // module-wide
Configuration settings
Boot.rovViewInfo = ViewInfo.Instance ViewInfo.create;
 
generated on Wed, 09 Apr 2014 00:39:47 GMT