-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty.cfg
172 lines (164 loc) · 7.41 KB
/
empty.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
* Copyright (c) 2015, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Texas Instruments Incorporated nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* ======== empty.cfg ========
*/
/* ================ General configuration ================ */
var Defaults = xdc.useModule('xdc.runtime.Defaults');
var Diags = xdc.useModule('xdc.runtime.Diags');
var Error = xdc.useModule('xdc.runtime.Error');
var Log = xdc.useModule('xdc.runtime.Log');
var Main = xdc.useModule('xdc.runtime.Main');
var Memory = xdc.useModule('xdc.runtime.Memory');
var System = xdc.useModule('xdc.runtime.System');
var Text = xdc.useModule('xdc.runtime.Text');
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var Clock = xdc.useModule('ti.sysbios.knl.Clock');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
var Hwi = xdc.useModule('ti.sysbios.hal.Hwi');
var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
var Queue = xdc.useModule('ti.sysbios.knl.Queue');
var Event = xdc.useModule('ti.sysbios.knl.Event');
var GateMutexPri = xdc.useModule('ti.sysbios.gates.GateMutexPri');
var Swi = xdc.useModule('ti.sysbios.knl.Swi');
/*
* Program.stack is ignored with IAR. Use the project options in
* IAR Embedded Workbench to alter the system stack size.
*/
if (!Program.build.target.$name.match(/iar/)) {
/*
* Reducing the system stack size (used by ISRs and Swis) to reduce
* RAM usage.
*/
Program.stack = 1024;
}
/* ================ System configuration ================ */
var SysMin = xdc.useModule('xdc.runtime.SysMin');
System.SupportProxy = SysMin;
SysMin.bufSize = 128;
/* ================ Logging configuration ================ */
var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup');
LoggingSetup.loadLoggerSize = 128;
LoggingSetup.mainLoggerSize = 256;
LoggingSetup.sysbiosLoggerSize = 256;
/* ================ Kernel configuration ================ */
/* Use Custom library */
var BIOS = xdc.useModule('ti.sysbios.BIOS');
BIOS.libType = BIOS.LibType_Custom;
BIOS.logsEnabled = true;
BIOS.assertsEnabled = true;
BIOS.heapSize = 512;
/* ================ Driver configuration ================ */
var TIRTOS = xdc.useModule('ti.tirtos.TIRTOS');
TIRTOS.useGPIO = true;
var clock0Params = new Clock.Params();
clock0Params.instance.name = "BarrierOppClk1";
clock0Params.period = 2000;
clock0Params.arg = 1;
Program.global.BarrierOppClk1 = Clock.create("&genericPriBarrierClkHandler", 2000, clock0Params);
var semaphore0Params = new Semaphore.Params();
semaphore0Params.instance.name = "BarrierOppSem1";
semaphore0Params.mode = Semaphore.Mode_COUNTING_PRIORITY;
Program.global.BarrierOppSem1 = Semaphore.create(0, semaphore0Params);
var task0Params = new Task.Params();
task0Params.instance.name = "CargoVessel";
task0Params.arg0 = 2;
task0Params.arg1 = 2;
Program.global.CargoVessel = Task.create("&sailAway", task0Params);
var task1Params = new Task.Params();
task1Params.instance.name = "OilTankerVessel";
task1Params.arg0 = 1;
task1Params.arg1 = 3;
Program.global.OilTankerVessel = Task.create("&sailAway", task1Params);
var task2Params = new Task.Params();
task2Params.instance.name = "mailVessel";
task2Params.arg0 = 3;
task2Params.arg1 = 1;
Program.global.mailVessel = Task.create("&sailAway", task2Params);
var queue0Params = new Queue.Params();
queue0Params.instance.name = "ledSpecQ";
Program.global.ledSpecQ = Queue.create(queue0Params);
var event0Params = new Event.Params();
event0Params.instance.name = "vesselReqEvt";
Program.global.vesselReqEvt = Event.create(event0Params);
var clock1Params = new Clock.Params();
clock1Params.instance.name = "timeSharingClk";
clock1Params.period = 1;
clock1Params.startFlag = true;
Program.global.timeSharingClk = Clock.create("&tsClockHandler", 1, clock1Params);
var task3Params = new Task.Params();
task3Params.instance.name = "ledSrvTask";
task3Params.priority = 6;
task3Params.vitalTaskFlag = true;
Program.global.ledSrvTask = Task.create("&ledSrvTaskHandler", task3Params);
var clock2Params = new Clock.Params();
clock2Params.instance.name = "BarrierFIFOClk3";
clock2Params.arg = 3;
Program.global.BarrierFIFOClk3 = Clock.create("&genericFifoBarrierClkHandler", 4000, clock2Params);
var semaphore1Params = new Semaphore.Params();
semaphore1Params.instance.name = "BarrierFIFOSem3";
semaphore1Params.mode = Semaphore.Mode_COUNTING;
Program.global.BarrierFIFOSem3 = Semaphore.create(0, semaphore1Params);
var gateMutexPri0Params = new GateMutexPri.Params();
gateMutexPri0Params.instance.name = "gateMutexPri0";
Program.global.gateMutexPri0 = GateMutexPri.create(gateMutexPri0Params);
var gateMutexPri1Params = new GateMutexPri.Params();
gateMutexPri1Params.instance.name = "gateMutexPri1";
Program.global.gateMutexPri1 = GateMutexPri.create(gateMutexPri1Params);
var clock3Params = new Clock.Params();
clock3Params.instance.name = "BarrierOppClk5";
clock3Params.period = 2000;
clock3Params.arg = 5;
Program.global.BarrierOppClk5 = Clock.create("&genericPriBarrierClkHandler", 2000, clock3Params);
var semaphore2Params = new Semaphore.Params();
semaphore2Params.instance.name = "BarrierOppSem5";
semaphore2Params.mode = Semaphore.Mode_COUNTING_PRIORITY;
Program.global.BarrierOppSem5 = Semaphore.create(null, semaphore2Params);
var clock4Params = new Clock.Params();
clock4Params.instance.name = "BarrierFIFOClk7";
clock4Params.arg = 7;
Program.global.BarrierFIFOClk7 = Clock.create("&genericFifoBarrierClkHandler", 4000, clock4Params);
var semaphore3Params = new Semaphore.Params();
semaphore3Params.instance.name = "BarrierFIFOSem7";
Program.global.BarrierFIFOSem7 = Semaphore.create(null, semaphore3Params);
var task4Params = new Task.Params();
task4Params.instance.name = "MaintenanceShip";
task4Params.priority = 4;
task4Params.arg0 = 4;
task4Params.arg1 = 4;
Program.global.MaintenanceShip = Task.create("&maintainCanal", task4Params);
var semaphore4Params = new Semaphore.Params();
semaphore4Params.instance.name = "endPointMutex";
semaphore4Params.mode = Semaphore.Mode_BINARY;
Program.global.endPointMutex = Semaphore.create(1, semaphore4Params);
Task.deleteTerminatedTasks = false;