Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TTCN-3 Libraries
LibIts
Commits
ebb85183
Commit
ebb85183
authored
Nov 07, 2016
by
garciay
Browse files
Add external function fx_getDSecond()
parent
29523a83
Changes
1
Hide whitespace changes
Inline
Side-by-side
ttcn/Common/LibItsCommon_Functions.ttcn
View file @
ebb85183
...
...
@@ -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
{
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment