Commit 9c04fd60 authored by garciay's avatar garciay
Browse files

Add function f_getContextData

parent 438a1740
Loading
Loading
Loading
Loading
+17 −7
Original line number Diff line number Diff line
@@ -36,7 +36,8 @@ module LibItsFsap_Functions {
            SAM, 
            CTX, CTXrxNot, 
            GCregClient, 
            GCschedule, ServiceDataReg, ServiceList 
            GCschedule, ServiceDataReg, ServiceList, 
            ContextData 
    };
    import from CALMfntp language "ASN.1:1997" {
        type
@@ -565,7 +566,7 @@ module LibItsFsap_Functions {
         * @see     PICS_SAM_RETRANSMIT_TIMER
         */
        function f_getIutSamRetransmitTimer() return float {
            return 0.8 * PICS_SAM_RETRANSMIT_TIMER / 1000.0; // 80%
            return 0.9 * PICS_SAM_RETRANSMIT_TIMER / 100.0; // 90%
        }
        
        /**
@@ -574,7 +575,7 @@ module LibItsFsap_Functions {
         * @see     PICS_SAM_RETRANSMIT_TIMER
         */
        function f_getIutSamMaxJitter() return float {
           return 1.2 * PICS_SAM_RETRANSMIT_TIMER / 1000.0; // 120%
           return 1.1 * PICS_SAM_RETRANSMIT_TIMER / 100.0; // 110%
        }
        
        /**
@@ -743,6 +744,15 @@ module LibItsFsap_Functions {
            return PX_SESSION_PORT;
        } 
        
        /**
         * @desc    Get the context data value 
         * @return  The context data value 
         * @see     PX_CONTEXT_DATA
         */
        function f_getContextData() return ContextData { 
            return PX_CONTEXT_DATA;
        } 
        
    } // End of group iutFunctions
    
    group fsapAltsteps {