/** * @author ETSI / STF405 * @version $URL: svn+ssh://vcs.etsi.org/TTCN3/ATS/Its/trunk/ttcn/AtsCAM/ItsCam_Pixits.ttcn $ * $Id: ItsCam_Pixits.ttcn 87 2010-08-27 10:15:07Z fischer $ * @desc CAM PICS * */ module LibItsCam_Pixits { // LibCommon import from LibCommon_BasicTypesAndValues all; import from CAM_PDU_Descriptions language "ASN.1:1997" all; import from DENM_PDU_Descriptions language "ASN.1:1997" all; group camPixits { /** * @desc Tester Station Id * Station Id used in CAM messages sent by the tester (IRS) */ modulepar integer PX_TESTER_STATION_ID := 111111; /** * @desc Tester Longitude reference position */ modulepar Longitude PX_LONGITUDE; /** * @desc Tester Longitude reference position */ modulepar Latitude PX_LATITUDE; /** * @desc Tester Longitude reference position */ modulepar Elevation PX_ELEVATION; /** * @desc IUT Course of Journey (PT Line Description) */ modulepar CourseOfJourney PX_PTLINE_COURSE; /** * @desc IUT Line Reference (PT Line Description) */ modulepar LineRef PX_PTLINE_REF; /** * @desc IUT Route Reference (PT Line Description) */ modulepar RouteRef PX_PTLINE_ROUTE; } // end of group cam_Pixits } // end of module ItsCam_Pixits