ItsRSUsSimulator_Pixits.ttcn 1.21 KB
Newer Older
garciay's avatar
garciay committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * 
 * @desc 
 * 
 * @reference https://wiki.plugtests.net/wiki/ITS-CMS5/index.php/Base_Specs_and_Test_Specs
 */

module ItsRSUsSimulator_Pixits {
    
    // LibIts
    import from ITS_Container language "ASN.1:1997" all;
    import from CAM_PDU_Descriptions language "ASN.1:1997" all;
    import from DENM_PDU_Descriptions language "ASN.1:1997" all;
    
    // LibItsCommon
    import from LibItsCommon_Functions all;
    
    // AtsRSUsSimulator
    import from ItsRSUsSimulator_TypesAndValues all;
    import from ItsRSUsSimulator_Pics all;
    
22
23
24
    /**
     * @desc Indicate which RSU to simulate
     */
garciay's avatar
garciay committed
25
    modulepar integer PX_RSU_ID := 2; 
garciay's avatar
garciay committed
26
    
27
28
    /**
     * @desc Indicate which Use Case to simulate
29
30
31
32
     * @remark UC1 (DENM): PX_ETSI_USE_CASE_ID := 1
     *         UC3 (TLM):  PX_ETSI_USE_CASE_ID := 3
     *         UC5 (IVIM): PX_ETSI_USE_CASE_ID := 5
     *         UC6 (CAM):  PX_ETSI_USE_CASE_ID := 6
33
     *         UC9 (CAM):  PX_ETSI_USE_CASE_ID := 9 !! PX_RSU_ID 5
34
     */
35
    modulepar integer PX_ETSI_USE_CASE_ID := 6;
36
37
38
    
    /**
     * @desc Indicate which zone to simulate
39
     * @remark Used only for DENM
40
     */
garciay's avatar
garciay committed
41
    modulepar integer PX_ETSI_ZONE_ID := 2;
garciay's avatar
garciay committed
42
43
    
} // End of module ItsRSUsSimulator_Pixits