Newer
Older
* @desc Module containing PTCs and interface ports definitions for ITS
*
*/
import from CAM_PDU_Descriptions language "ASN.1:1997" all;
// LibCommon
import from LibCommon_Time {modulepar all};
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
group adapterInterface {
group portDefinitions {
/**
* @desc Adapter control port
*/
type port AdapterControlPort message {
in integer; //TODO: remove me
} // end AdapterControlPort
/**
* @desc Upper Tester port
*/
type port UpperTesterPort message {
in integer; //TODO: remove me
} // end UpperTesterPort
} // end portDefinitions
group adapterComponent {
type component ItsAdapterComponent {
// Adapter ports
port UpperTesterPort utPort;
port AdapterControlPort acPort;
} // end AdapterComponent
} // end adapterComponent
} // adapterInterface
group interfaceComponents {
/**
* @desc Test component for ITS Access layer
*/
type component ItsAc extends ItsAdapterComponent {
// AC1 ports
port MacM5Port macM5Port;
// AC2 ports
/**
* @desc Test component for ITS Facility layer
*/
type component ItsFa extends ItsAdapterComponent {
port CamPort camPort;
port DenmPort denmPort;
// FA2 ports
port CooperPort cooperPort;
timer tc_minTransInterval := PICS_CAM_MIN_TRANSMISSION_INTERVAL;
timer tc_maxTransInterval := PICS_CAM_MAX_TRANSMISSION_INTERVAL;
/**
* @desc Test component for ITS Management layer
*/
type component ItsMgt extends ItsAdapterComponent {
/**
* @desc Test component for ITS Network and Transport layer
*/
type component ItsNt extends ItsAdapterComponent {
port IPv6OverGeoNetworkingPort ipv6OverGeoNetworkingPort;
// NT3 ports
port FastPort fastPort;
// timers
timer tc_wait := PX_TWAIT;
timer tc_ac := PX_TAC;
} // 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 {
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
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 Invalid CAM Request Primitive
*/
type record InvalidCamReq {
InvalidCamPdu msgOut
}
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
}
} // 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