1 2 3 4 5 6 7 8 9 10 11
12
13 14 15
16
17 package ti.platforms.gccLM3S9B90RAM;
18
19 /*!
20 * ======== Platform ========
21 * Platform support with GCC for an LM3S9B90 using RAM only
22 *
23 * This module implements xdc.platform.IPlatform and defines configuration
24 * parameters that correspond to this platform's Cpu's, Board's, etc.
25 *
26 * The configuration parameters are initialized in this package's
27 * configuration script (package.cfg) and "bound" to the TCOM object
28 * model. Once they are part of the model, these parameters are
29 * queried by a program's configuration script.
30 *
31 * This particular platform has a single Cpu, and therefore, only
32 * declares a single CPU configuration object. Multi-CPU platforms
33 * would declare multiple Cpu configuration parameters (one per
34 * platform CPU).
35 */
36 metaonly module Platform inherits xdc.platform.IPlatform
37 {
38 /*!
39 * ======== BOARD ========
40 * This platform's board attributes
41 */
42 readonly config xdc.platform.IPlatform.Board BOARD = {
43 id: "0",
44 boardName: "gccLM3S9B90RAM",
45 boardFamily: "gccLM3S9B90RAM",
46 boardRevision: null
47 };
48
49 /*!
50 * ======== CPU ========
51 * The Cortex M3 core
52 */
53 readonly config xdc.platform.IExeContext.Cpu CPU = {
54 id: "0",
55 clockRate: 80.0,
56 catalogName: "ti.catalog.arm.cortexm3",
57 deviceName: "LM3S9B90",
58 revision: "",
59 };
60
61 instance:
62
63 };
64 65 66
67