Commit a5649fcc authored by berge's avatar berge
Browse files

Fixed Pixits names

parent 60fb96fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -197,14 +197,14 @@ module LibItsCam_Functions {
        /** 
         * @desc    Gets tester's station characteristics
         * @return  Station characteristics
         * @see     PXT_TESTER_IS_MOBILE, PXT_TESTER_IS_PRIVATE, PXT_TESTER_IS_PHYSICAL_RELEVANT    
         * @see     PX_TESTER_IS_MOBILE, PX_TESTER_IS_PRIVATE, PX_TESTER_IS_PHYSICAL_RELEVANT    
        */
        function f_getTesterStationCharacteristics()
        return CoopAwareness.stationCharacteristics {

            var CoopAwareness.stationCharacteristics v_stationCharacteristics := { true, true, true };

            v_stationCharacteristics := {PXT_TESTER_IS_MOBILE, PXT_TESTER_IS_PRIVATE, PXT_TESTER_IS_PHYSICAL_RELEVANT};
            v_stationCharacteristics := {PX_TESTER_IS_MOBILE, PX_TESTER_IS_PRIVATE, PX_TESTER_IS_PHYSICAL_RELEVANT};
            
            return v_stationCharacteristics ;
    
+3 −3
Original line number Diff line number Diff line
@@ -32,17 +32,17 @@ module LibItsCam_Pixits {
        /**
         * @desc Determines whether Tester is a mobile ITS station
         */
        modulepar boolean PXT_TESTER_IS_MOBILE := true;
        modulepar boolean PX_TESTER_IS_MOBILE := true;
        
        /**
         * @desc Determines whether Tester is a private ITS station
         */
        modulepar boolean PXT_TESTER_IS_PRIVATE := true;
        modulepar boolean PX_TESTER_IS_PRIVATE := true;
        
        /**
         * @desc Determines whether Tester is a physically relevant ITS station
         */        
        modulepar boolean PXT_TESTER_IS_PHYSICAL_RELEVANT := true;
        modulepar boolean PX_TESTER_IS_PHYSICAL_RELEVANT := true;
           	        

    } // end of group cam_Pixits
+2 −2
Original line number Diff line number Diff line
@@ -406,8 +406,8 @@ module LibItsGeoNetworking_Functions {
        
            var LongPosVector v_return := p_refPosition;
        
            v_return.latitude := v_return.latitude + p_latitudeFactor * PXT_DISTANCE_UNIT;
            v_return.longitude := v_return.longitude + p_longitudeFactor * PXT_DISTANCE_UNIT;
            v_return.latitude := v_return.latitude + p_latitudeFactor * PX_DISTANCE_UNIT;
            v_return.longitude := v_return.longitude + p_longitudeFactor * PX_DISTANCE_UNIT;

            return v_return;
        }
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ module LibItsGeoNetworking_Pixits {
         * @remark  This Pixit is used to position nodes relatively to each other.
         *          It corresponds to the distance betwen 2 nodes (10000 ~ 100m).
         */
        modulepar UInt32 PXT_DISTANCE_UNIT := 10000;
        modulepar UInt32 PX_DISTANCE_UNIT := 10000;

    } // end of group