Commit e9d58483 authored by ASN.1 Documenter's avatar ASN.1 Documenter
Browse files

Initial

parent c9748c79
Loading
Loading
Loading
Loading

.gitmodules

0 → 100644
+4 −0
Original line number Original line Diff line number Diff line
[submodule "asn1/cdd"]
	path = asn1/cdd
	url = https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2.git
	branch = testing
Original line number Original line Diff line number Diff line
Subproject commit cabf82ff5275e77dd427f5de86316bc3c198a32c
+1 −13
Original line number Original line Diff line number Diff line
modules := ttcn/Common \
modules := ttcn/Common
           asn1/ITS-Container \

#           asn1/IS \
#           asn1/Security \
#           asn1/DENM \
#           asn1/CAM \
#           ttcn/DENM \
#           ttcn/IVIM \
#           ttcn/MapemSpatem \
#           ttcn/Pki         \
#           ttcn/SremSsem    \
#           ttcn/Http \
+3 −3
Original line number Original line Diff line number Diff line
@@ -4,9 +4,9 @@ module LibItsCommon_ASN1_NamedNumbers {
    
    
    import from ITS_Container language "ASN.1:2008" all;
    import from ITS_Container language "ASN.1:2008" all;
    
    
    import from IVI language "ASN.1:1997" {
//    import from IVI language "ASN.1:1997" {
      type IviStatus
//      type IviStatus
    }
//    }
    
    
      group commonConstants {
      group commonConstants {
           
           
+7 −7
Original line number Original line Diff line number Diff line
@@ -20,7 +20,7 @@ module LibItsCommon_Functions {
    // LibIts
    // LibIts
    import from LibItsCommon_Pixits all;
    import from LibItsCommon_Pixits all;
    import from ITS_Container language "ASN.1:1997" all;
    import from ITS_Container language "ASN.1:1997" all;
    import from DSRC language "ASN.1:1997" all;
//    import from DSRC language "ASN.1:1997" all;
    
    
    group generalFunctions {
    group generalFunctions {
        
        
@@ -134,8 +134,8 @@ module LibItsCommon_Functions {
         * @desc    Gets the current time since 01/01/2004
         * @desc    Gets the current time since 01/01/2004
         * @return  TimeMark - tenths of a second in the current or next hour in units of 1/10th second from UTC time
         * @return  TimeMark - tenths of a second in the current or next hour in units of 1/10th second from UTC time
         */
         */
        function f_getCurrentTimeMark() return TimeMark {
        function f_getCurrentTimeMark() return UInt32 {
            var TimeMark 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();
@@ -147,8 +147,8 @@ module LibItsCommon_Functions {
         * @desc    Gets the Minute of current UTC year
         * @desc    Gets the Minute of current UTC year
         * @return  MinuteOfTheYear - tenths of a second in the current or next hour in units of 1/10th second from UTC time
         * @return  MinuteOfTheYear - tenths of a second in the current or next hour in units of 1/10th second from UTC time
         */
         */
        function f_getMinuteOfTheYear() return MinuteOfTheYear {
        function f_getMinuteOfTheYear() return UInt16 {
            var MinuteOfTheYear v_minuteOfTheYear := 0;
            var UInt16 v_minuteOfTheYear := 0;
            
            
//            log("*** f_getMinuteOfTheYear: INFO: calling fx_getMinuteOfTheYear() ***");
//            log("*** f_getMinuteOfTheYear: INFO: calling fx_getMinuteOfTheYear() ***");
            v_minuteOfTheYear := fx_getMinuteOfTheYear();
            v_minuteOfTheYear := fx_getMinuteOfTheYear();
@@ -160,8 +160,8 @@ module LibItsCommon_Functions {
         * @desc    Gets the milliseconds point in the current UTC minute
         * @desc    Gets the milliseconds point in the current UTC minute
         * @return  DSecond - The milliseconds point in the current UTC minute (0..60000)
         * @return  DSecond - The milliseconds point in the current UTC minute (0..60000)
         */
         */
        function f_getDSecond() return DSecond {
        function f_getDSecond() return UInt16 {
            var DSecond v_dSecond := 0;
            var UInt16 v_dSecond := 0;
            
            
//            log("*** f_getDSecond: INFO: calling fx_getDSecond() ***");
//            log("*** f_getDSecond: INFO: calling fx_getDSecond() ***");
            v_dSecond := fx_getDSecond();
            v_dSecond := fx_getDSecond();
Loading