Commit 106441a0 authored by Yann Garcia's avatar Yann Garcia
Browse files

Remove CRLF

parent db2eee88
Loading
Loading
Loading
Loading
+192 −175
Original line number Original line Diff line number Diff line
@@ -28,7 +28,7 @@ module LibItsCommon_Functions {
    function f_getCurrentTime() return TimestampIts {
    function f_getCurrentTime() return TimestampIts {
        var TimestampIts v_timeStamp := 0;
        var TimestampIts v_timeStamp := 0;


//            log("*** f_getCurrentTime: INFO: calling fx_getCurrentTime() ***");
          log("*** f_getCurrentTime: INFO: calling fx_getCurrentTime() ***");
        v_timeStamp := fx_getCurrentTime();
        v_timeStamp := fx_getCurrentTime();


        return v_timeStamp;
        return v_timeStamp;
@@ -41,7 +41,7 @@ module LibItsCommon_Functions {
    function f_getCurrentTimeMark() return UInt32 {
    function f_getCurrentTimeMark() return UInt32 {
        var UInt32 v_timeMark := 0;
        var UInt32 v_timeMark := 0;


//            log("*** f_getCurrentTimeMark: INFO: calling fx_getCurrentTimeMark() ***");
          log("*** f_getCurrentTimeMark: INFO: calling fx_getCurrentTimeMark() ***");
        v_timeMark := fx_getCurrentTimeMark();
        v_timeMark := fx_getCurrentTimeMark();


        return v_timeMark;
        return v_timeMark;
@@ -50,7 +50,6 @@ module LibItsCommon_Functions {
  } // end generalFunctions
  } // end generalFunctions


  group itsFunctions {
  group itsFunctions {

    /**
    /**
     * @desc    Gets the station identifier of implementation under test (IUT)
     * @desc    Gets the station identifier of implementation under test (IUT)
     * @return  IUT's station ID
     * @return  IUT's station ID
@@ -98,7 +97,6 @@ module LibItsCommon_Functions {
        return PX_TS_LATITUDE;
        return PX_TS_LATITUDE;


    } // end f_getTsLatitude
    } // end f_getTsLatitude

    /**
    /**
     * @desc    Gets the current longitude of test system
     * @desc    Gets the current longitude of test system
     * @return  Test system's latitude
     * @return  Test system's latitude
@@ -169,7 +167,26 @@ module LibItsCommon_Functions {
        in float p_squareMeters
        in float p_squareMeters
    ) return float;
    ) return float;


    } // end externalFunctions
    /**
    * @desc Verifiy 'euclidian distance (P1, P2) > threshold'
    * @param p_p1 Initial position
    * @param p_p2 Next position
    * @param p_threshold Threshold value for the comparison
    * @param p_comparison Comparison operation: -1 is <, 0 is == and 1 is >
    * @return true if comparison is verified, false otherwise
    */
    external function fx_verify_euclidian_distance(in integer p_p1_lat, in integer p_p1_lon, in integer p_p2_lat, in integer p_p2_lon, in float p_threshold, in integer p_comparison) return boolean;


    /**
    * @desc Verifiy '|V2 - V1| > threshold'
    * @param p_v1 Initial value
    * @param p_v2 Next value
    * @param p_threshold Threshold value for the comparison
    * @param p_comparison Comparison operation: -1 is <, 0 is == and 1 is >
    * @return true if comparison is verified, false otherwise
    */
    external function fx_verify_delta(in integer p_v1, in integer p_v2, in float p_threshold, in integer p_comparison) return boolean;

  } // end externalFunctions


} // end of module
} // end of module