Commit ad48b227 authored by mogos's avatar mogos
Browse files

added timers as constants (0006808)

parent d1f127ac
Loading
Loading
Loading
Loading
+72 −25
Original line number Diff line number Diff line
@@ -816,4 +816,51 @@ module LibItsECall_TypesAndValues {
        const MnoConfiguration c_defaultMnoConfiguration := {
        }
    } // end configurationTemplates

    group timers {
        /**
         * @desc  IVS' Call Clear-down Fallback Timer
         */
        modulepar float c_t2_timer := 3600.0;

        /**
         * @desc IVS INITIATION signal duration
         */
        modulepar float c_t3_timer := 2.0;
  
        /**
         * @desc PSAP wait for INITIATION signal period
         */
        modulepar float c_t4_timer := 5.0;
  
        /**
         * @desc IVS wait for SEND MSD period
         */
        modulepar float c_t5_timer := 5.0;
  
        /**
         * @desc IVS wait for AL-ACK period
         */
        modulepar float c_t6_timer := 5.0;
  
        /**
         * @desc IVS  MSD  maximum transmission time
         */
        modulepar float c_t7_timer := 20.0;
  
        /**
         * @desc PSAP MSD maximum reception time
         */
        modulepar float c_t8_timer := 20.0;
        
        /**
         * @desc IVS NAD minimum network registration period
         */
        modulepar float c_t9_timer := 20.0;

        /**
         * @desc IVS NAD network "Deregistration Fallback Timer" (DFT)
         */
        modulepar float c_t10_timer := 20.0;
    }
}