LibItsCommon_Pixits.ttcn 1.37 KB
Newer Older
garciay's avatar
garciay committed
 *  @author   ETSI / STF405 / STF449 / STF484 / STF517
 *  @version  $URL$
 *            $Id$
 *  @desc     Common PIXITS
 *
 */
module LibItsCommon_Pixits {
    
    /**
     * @desc IUT Station Id
     *       Station Id used in CAM/DENM messages sent by the tester
     */
    modulepar integer PX_IUT_STATION_ID := 1;
    
    /**
     * @desc IUT Station Type
     *       Station Type used in CAM/DENM messages sent by the IUT
     */
    modulepar integer PX_IUT_STATION_TYPE := 5;
    
    /**
     * @desc Tester Station Id
     *       Station Id used in CAM/DENM messages sent by the tester
     */
    modulepar integer PX_TESTER_STATION_ID := 111111;
    /**
     * @desc Tester Station Type
     *       Station Type used in CAM/DENM messages sent by the tester
     */
    modulepar integer PX_TESTER_STATION_TYPE := 3;
    
     *  @desc The Latitude of the tester.
     */
    modulepar integer PX_TS_LATITUDE := 436175790;

    /**
     *  @desc The Longitude of the tester.
    modulepar integer PX_TS_LONGITUDE := 70546480;

    /**
     * @desc Tolerance to be applied when checking timestamps (ms)
     */
    modulepar integer PX_TIME_DELTA := 1000;
    /**
     * @desc Support for GNSS scenario
     */
garciay's avatar
garciay committed
    modulepar boolean PICS_GNSS_SCENARIO_SUPPORT := false;
} // end LibItsCommon_Pixits