Loading ttcn/Common/LibItsCommon_Functions.ttcn +19 −0 Original line number Diff line number Diff line Loading @@ -139,6 +139,19 @@ module LibItsCommon_Functions { return v_minuteOfTheYear; } /** * @desc Gets the milliseconds point in the current UTC minute * @return DSecond - The milliseconds point in the current UTC minute (0..60000) */ function f_getDSecond() return DSecond { var DSecond v_dSecond := 0; // log("*** f_getDSecond: INFO: calling fx_getDSecond() ***"); v_dSecond := fx_getDSecond(); return v_dSecond; } } // end generalFunctions group itsFunctions { Loading Loading @@ -223,6 +236,12 @@ module LibItsCommon_Functions { */ external function fx_getMinuteOfTheYear() return UInt16; /** * @desc Gets the milliseconds point in the current UTC minute * @return DSecond - the milliseconds point in the current UTC minute */ external function fx_getDSecond() return UInt16; /** * @desc External function to compute distance between two points * @param p_latitudeA Latitude of first point Loading Loading
ttcn/Common/LibItsCommon_Functions.ttcn +19 −0 Original line number Diff line number Diff line Loading @@ -139,6 +139,19 @@ module LibItsCommon_Functions { return v_minuteOfTheYear; } /** * @desc Gets the milliseconds point in the current UTC minute * @return DSecond - The milliseconds point in the current UTC minute (0..60000) */ function f_getDSecond() return DSecond { var DSecond v_dSecond := 0; // log("*** f_getDSecond: INFO: calling fx_getDSecond() ***"); v_dSecond := fx_getDSecond(); return v_dSecond; } } // end generalFunctions group itsFunctions { Loading Loading @@ -223,6 +236,12 @@ module LibItsCommon_Functions { */ external function fx_getMinuteOfTheYear() return UInt16; /** * @desc Gets the milliseconds point in the current UTC minute * @return DSecond - the milliseconds point in the current UTC minute */ external function fx_getDSecond() return UInt16; /** * @desc External function to compute distance between two points * @param p_latitudeA Latitude of first point Loading