module ti.catalog.c2800.concertoInit.Boot

Concerto C28 Boot Support

This Boot module can be used to generate a small section that supports booting the C28 processor from Flash. It consists of a single "LB _c_int00" instruction. [ more ... ]
C synopsis target-domain sourced in ti/catalog/c2800/concertoInit/Boot.xdc
DETAILS
This Boot module can be used to generate a small section that supports booting the C28 processor from Flash. It consists of a single "LB _c_int00" instruction.
When bootFromFlash is true, the instruction will be placed at "BEGIN", as defined in the 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
 
XDCscript usage meta-domain sourced in ti/catalog/c2800/concertoInit/Boot.xdc
var Boot = xdc.useModule('ti.catalog.c2800.concertoInit.Boot');
module-wide config parameters
 
 
metaonly config Boot.bootFromFlash  // module-wide

Boot from FLASH flag. Default is true

XDCscript usage meta-domain
Boot.bootFromFlash = Bool true;
 
DETAILS
Set to true to enable booting the C28 from Flash.
 
metaonly config Boot.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
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.
generated on Thu, 17 Nov 2011 02:03:56 GMT