ItsAutoInterop_Pixits.ttcn 1.09 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 
     */
    modulepar charstring PX_PCAP_FILE_NAME := "g5capture.pcap";
    
    modulepar EutDescriptions PX_EUT_DESC := {
        {
            '000000000001'O,
            111,
            '000000000001'O
        }, // EUT_1
        {
            '000000000002'O,
            222,
            '000000000003'O
        }, // EUT_2
		{
            '000000000003'O,
            333,
            '000000000003'O
		}, // EUT_3
		{
            '000000000004'O,
            444,
            '000000000004'O
		} // EUT_4
    }
    
    /**
     * @desc 
     */
//    modulepar charstring PX_PCAP_MIDs_FILTER := "00:00:00:00:00:00;11:11:11:11:11:11";
    
    /**
     * @desc 
     */
    modulepar UInt32 PX_PCAP_START_OFFSET := 0;

    
} // End of module ItsAutoInterop_Pixits