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 */
25
26 module Settings {
27
28 /*!
29 * ======== bootOnly ========
30 * Allow supplying only the boot code library
31 *
32 * This package can supply the boot code and the library with the
33 * implementation of xdc.runtime modules. If this parameter is set to
34 * `true`, only the boot code is supplied. Otherwise, both the boot code
35 * and the xdc.runtime implementation are supplied.
36 */
37 metaonly config Bool bootOnly = false;
38 }