Newer
Older
* @desc Module containing PTCs and interface ports definitions for ITS
*
*/
// LibIts
import from LibItsCam_Pixits all;
// LibCommon
import from LibCommon_Time {modulepar all};
group interfaceComponents {
/**
* @desc Test component for ITS Access layer
*/
// AC1 ports
port MacM5Port macM5Port;
// AC2 ports
/**
* @desc Test component for ITS Facility layer
*/
port CamPort camPort;
port DenmPort denmPort;
// FA2 ports
port CooperPort cooperPort;
// timers
timer tc_ac := PX_TAC;
timer tc_minTransInterval := PX_CAM_MIN_TRANSMISSION_INTERVAL;
timer tc_maxTransInterval := PX_CAM_MAX_TRANSMISSION_INTERVAL;
/**
* @desc Test component for ITS Management layer
*/
/**
* @desc Test component for ITS Network and Transport layer
*/
port IPv6OverGeoNetworkingPort ipv6OverGeoNetworkingPort;
// NT3 ports
port FastPort fastPort;
} // end interfaceComponents
group interfacePorts {
/**
* @desc AC1 Mac M5 Port (MacM5/PhyM5)
*/
type port MacM5Port message {
/**
* @desc AC2 Mac IR Port (MacIR/PhyIR)
*/
/**
* @desc FA1 CAM Port (CAM/BTP/GeoNet/G5)
*/
/**
* @desc FA1 DENM Port (DENM/BTP/GeoNet/G5)
*/
/**
* @desc FA2 Cooper Port (Cooper/Fast/M5-IR)
*/
type port CooperPort message {
/**
* @desc MGT1 IISC Port (IISC/LAN)
*/
/**
* @desc NT1 BTP Port (BTP/GeoNet/G5)
*/
* @desc NT2 GeoNetworking Port (GeoNetworking/G5)
type port GeoNetworkingPort message {
* @desc NT2 IPv6 over GeoNetworking Port (IPv6/GeoNetworking/G5)
type port IPv6OverGeoNetworkingPort message {
in IPv6OverGeoNetworkingInd;
out IPv6OverGeoNetworkingReq;
} // end IPv6OverGeoNetworkingPort
/**
* @desc NT3 Fast Port (Fast/M5-IR)
*/
type port FastPort message {
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
group interfacePrimitives {
group accessPrimitives {
group ac1Primitives {
/**
* @desc AC1 Mac M5 Indication Primitive
*/
type record MacM5Ind {
}
/**
* @desc AC1 Mac M5 Request Primitive
*/
type record MacM5Req {
}
} // end ac1Primitives
group ac2Primitives {
/**
* @desc AC2 Mac IR Indication Primitive
*/
type record MacIrInd {
}
/**
* @desc AC2 Mac IR Request Primitive
*/
type record MacIrReq {
}
} // end ac2Primitives
} // end accessPrimitives
group facilityPrimitives {
group fa1Primitives {
/**
* @desc FA1 CAM Indication Primitive
*/
type record CamInd {
}
/**
* @desc FA1 CAM Request Primitive
*/
type record CamReq {
}
/**
* @desc FA1 DENM Indication Primitive
*/
type record DenmInd {
}
/**
* @desc FA1 DENM Request Primitive
*/
type record DenmReq {
}
} // end fa1Primitives
group fa2Primitives {
/**
* @desc FA2 Cooper Indication Primitive
*/
type record CooperInd {
}
/**
* @desc FA2 Cooper Request Primitive
*/
type record CooperReq {
}
} // end fa2Primitives
} // end facilityPrimitives
group managementPrimitives {
group mgt1Primitives {
/**
* @desc MGT1 IISC Indication Primitive
*/
type record IiscInd {
}
/**
* @desc MGT1 IISC Request Primitive
*/
type record IiscReq {
}
} // end mgt1Primitives
} // end managementPrimitives
group networkAndTransportPrimitives {
group nt1Primitives {
/**
* @desc NT1 BTP Indication Primitive
*/
type record BtpInd {
}
/**
* @desc NT1 BTP Request Primitive
*/
type record BtpReq {
}
} // end nt1Primitives
group nt2Primitives {
/**
* @desc NT2 GeoNetworking Indication Primitive
*/
type record GeoNetworkingInd {
GeoNetworkingPacket msgIn
}
/**
* @desc NT2 GeoNetworking Request Primitive
*/
type record GeoNetworkingReq {
GeoNetworkingPacket msgOut
}
/**
* @desc NT2 IPv6 over GeoNetworking Indication Primitive
*/
type record IPv6OverGeoNetworkingInd {
}
/**
* @desc NT2 IPv6 over GeoNetworking Request Primitive
*/
type record IPv6OverGeoNetworkingReq {
}
} // end nt2Primitives
group nt3Primitives {
/**
* @desc NT3 Fast Indication Primitive
*/
type record FastInd {
}
/**
* @desc NT3 Fast Request Primitive
*/
type record FastReq {
}
} // end nt3Primitives
} // end networkAndTransportPrimitives
} // end interfacePrimitives