ItsAutoInterop_Pixits.ttcn 1.27 KB
Newer Older
module ItsAutoInterop_Pixits {
    
    // Libcommon
    import from LibCommon_BasicTypesAndValues all;
    
    // ItsInterop
    import from ItsAutoInterop_TypesAndValues all;
    
    /**
     * @desc 
     *       Possible values: on-link or off-link
     */
    modulepar charstring PX_CAPTURE_MODE := "on-link"; 
    
    /**
     * @desc The PCAP file name containing the ITS G5 captures
     */
    modulepar charstring PX_PCAP_FILE_NAME := "g5capture.pcap";
    
    /**
     * EUTs descriptions
     */
    modulepar EutDescriptions PX_EUT_DESC := {
        {
            '000000000001'O,
            111,
            '000000000001'O
        }, // EUT_1
        {
            '000000000002'O,
            222,
            '000000000003'O
        }, // EUT_2
            '000000000003'O,
            333,
            '000000000003'O
            '000000000004'O,
            444,
            '000000000004'O
     * @desc TODO
     */
//    modulepar charstring PX_PCAP_MIDs_FILTER := "00:00:00:00:00:00;11:11:11:11:11:11";
    
    /**
     * @desc PCAP frame offsets to skip when starting to play the PCAP file 
     */
    modulepar UInt32 PX_PCAP_START_OFFSET := 0;

    
} // End of module ItsAutoInterop_Pixits