Commit 125787e6 authored by garciay's avatar garciay
Browse files

Remove PICS_RSU

IS PICS reviews
Remove some TODOs
parent 7ef94464
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -357,7 +357,7 @@ module LibItsIvim_Functions {
         * @desc The default postamble.
         */
        function f_poDefault() runs on ItsIvim {
            // Nothing TODO
            // Nothing to do
        }
        
        /**
+13 −12
Original line number Diff line number Diff line
@@ -11,52 +11,53 @@
 */
module LibItsIvim_Pics {
    
    /**
     * @desc Is the IUT running in secured mode?
     * @see  ETSI TS 103 191-1 Table A.1
     */
    modulepar boolean PICS_IS_IUT_SECURED := false;
    
    /**
     * @desc Support for IVIM generation
     * @see  ETSI TS 103 191-1 Table 3
     * @see  ETSI TS 103 191-1 Table A.3
     */
    modulepar boolean PICS_IVIM_GENERATION := true;

    /**
     * @desc Support for IVIM update
     * @see  ETSI TS 103 191-1 Table 3
     * @see  ETSI TS 103 191-1 Table A.3
     */
    modulepar boolean PICS_IVIM_UPDATE := true;

    /**
     * @desc Support for IVIM cancellation
     * @see  ETSI TS 103 191-1 Table 3
     * @see  ETSI TS 103 191-1 Table A.3
     */
    modulepar boolean PICS_IVIM_CANCELLATION := true;

    /**
     * @desc Support for IVIM NEGATION
     * @see  ETSI TS 103 191-1 Table 3
     * @see  ETSI TS 103 191-1 Table A.3
     */
    modulepar boolean PICS_IVIM_NEGATION := true;

    /**
     * @desc Support for IVIM RECEPTION
     * @see  ETSI TS 103 191-1 Table 3
     * @see  ETSI TS 103 191-1 Table A.3
     */
    modulepar boolean PICS_IVIM_RECEPTION := true;

    /**
     * @desc Is the IUT running in secured mode?
     */
    modulepar boolean PICS_IS_IUT_SECURED := false;
    
    /**
     * @desc Minimum time interval between IVIM generations (in seconds).
     *       Default value, as per base standard: 4s 
     * @see  ???
     * @see  ETSI TS 103 191-1 Table A.4
     */
    modulepar float PICS_T_GENIVIMMIN := 4.0;
    
    /**
     * @desc Maximum time interval between IVIM generations (in seconds).
     *       Default value, as per base standard: 10.0s 
     * @see  ???
     * @see  ETSI TS 103 191-1 Table A.4
     */
    modulepar float PICS_T_GENIVIMMAX := 10.000;
    
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ module LibItsIvim_Pixits {
     * @desc IUT Provider identifier
     *       Provider description used in IVIM messages sent by the tester
     */
    modulepar Provider PX_PROVIDER := { // TODO To be moved in LibItsCommon_Pixits?
    modulepar Provider PX_PROVIDER := { 
        countryCode         := '0000000000'B,
        providerIdentifier  := 0
    }
+0 −2
Original line number Diff line number Diff line
@@ -462,8 +462,6 @@ module LibItsIvim_Templates {
            rcc := p_rcc
        } // End of template mw_iviContainer_roadConfigurationContainer
        
        // TODO Add the other IviContainer fields if needed
        
    } // End of group iviContainerGroup
    
    group geographicLocationContainerGroup {
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ module LibItsMapemSpatem_Functions {
    import from LibItsCommon_TypesAndValues all;
    import from LibItsCommon_Templates all;
    import from LibItsCommon_Functions all;
    import from LibItsCommon_Pixits all;
    
    // LibItsMapemSpatem
    import from LibItsMapemSpatem_TestSystem all;
Loading