LibItsIvim_Pics.ttcn 3.24 KB
Newer Older
Bostjan Pintar's avatar
Bostjan Pintar committed
 *  @author   ETSI / STF517 / TTF002
Yann Garcia's avatar
Yann Garcia committed
 *  @version  $Url: https://oldforge.etsi.org/svn/LibIts/tags/20170222_STF527_Final/ttcn/IVIM/LibItsIvim_Pics.ttcn $
 *            $Id: LibItsIvim_Pics.ttcn 1312 2016-12-14 09:21:45Z garciay $
garciay's avatar
garciay committed
 *  @copyright   ETSI Copyright Notification
 *               No part may be reproduced except as authorized by written permission.
 *               The copyright and the foregoing restriction extend to reproduction in all media.
 *               All rights reserved.
garciay's avatar
garciay committed
    /**
     * @desc Is the IUT running in secured mode?
     * @see  ETSI TS 103 191-1 Table A.1
     */
    modulepar boolean PICS_IS_IUT_SECURED := false;
    
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM generation
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.3
garciay's avatar
garciay committed
     */
    modulepar boolean PICS_IVIM_GENERATION := true;
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM update
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.3
garciay's avatar
garciay committed
     */
    modulepar boolean PICS_IVIM_UPDATE := true;
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM cancellation
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.3
garciay's avatar
garciay committed
     */
    modulepar boolean PICS_IVIM_CANCELLATION := true;
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM NEGATION
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.3
garciay's avatar
garciay committed
     */
    modulepar boolean PICS_IVIM_NEGATION := true;
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM RECEPTION
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.3
garciay's avatar
garciay committed
     */
    modulepar boolean PICS_IVIM_RECEPTION := true;
garciay's avatar
garciay committed
    /**
     * @desc Minimum time interval between IVIM generations (in seconds).
     *       Default value, as per base standard: 4s 
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.4
garciay's avatar
garciay committed
     */
    modulepar float PICS_T_GENIVIMMIN := 4.0;
    
    /**
     * @desc Maximum time interval between IVIM generations (in seconds).
     *       Default value, as per base standard: 10.0s 
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.4
garciay's avatar
garciay committed
     */
    modulepar float PICS_T_GENIVIMMAX := 10.000;
Bostjan Pintar's avatar
Bostjan Pintar committed
    /**
     * @desc Support for IVIM fragmentation
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_FRAGMENTATION := false;
    
    /**
     * @desc Support for IVIM general container
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_HAS_GENERAL_CONTAINER := false;
    
    /**
     * @desc Support for IVIM has layout container
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_HAS_LAYOUT_CONTAINER := false;
    
    /**
     * @desc Support for IVIM has road cfg container
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_HAS_ROAD_CFG_CONTAINER := false;
    
    /**
     * @desc Support for IVIM has text container
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_HAS_TEXT_CONTAINER := false;
    
    /**
     * @desc Support for IVIM rscode viennaconv
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_RSCODE_VIENNACONV := false;
    
    /**
     * @desc Support for IVIM rscode ISO14823
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_RSCODE_ISO14823 := false;
    
    /**
     * @desc Support for IVIM rscode saej2540
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_RSCODE_SAEJ2540 := false;
    
    /**
     * @desc Support for IVIM rscode anz catalogue
     * @see  TODO
     */
    modulepar boolean PICS_IVIM_RSCODE_ANY_CATALOGUE := false;
garciay's avatar
garciay committed
} // End of module LibItsIvim_Pics