1 2 3 4 5 6 7 8 9 10 11 12
13
14 15 16
17
18 package ti.targets.msp430.rts430;
19
20 /*!
21 * ======== Settings ========
22 * Collection of parameters relevant for this package as a whole
23 */
24 module Settings {
25
26 /*!
27 * ======== bootOnly ========
28 * Allow supplying only the boot code library
29 *
30 * This package can supply the boot code and the library with the
31 * implementation of xdc.runtime modules. If this parameter is set to
32 * `true`, only the boot code is supplied. Otherwise, both the boot code
33 * and the xdc.runtime implementation are supplied.
34 */
35 metaonly config Bool bootOnly = false;
36 }