LibItsSremSsem_Pics.ttcn 2.24 KB
Newer Older
garciay's avatar
garciay committed
 *    @author   ETSI / STF517
Yann Garcia's avatar
Yann Garcia committed
 *    @version  $Url: https://oldforge.etsi.org/svn/LibIts/tags/20170222_STF527_Final/ttcn/SremSsem/LibItsSremSsem_Pics.ttcn $
 *              $Id: LibItsSremSsem_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
module LibItsSremSsem_Pics {
    
    // LibCommon
    import from LibCommon_BasicTypesAndValues all;
    
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;
    
     * @desc Support for SREM generation
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.5
    modulepar boolean PICS_SREM_GENERATION := true;
    
    /**
     * @desc Support for SREM generation
     * @see  ETSI TS 103 191-1 Table A.5
     */
    modulepar boolean PICS_SREM_TRANSMISSION_RATE := true;
    
    /**
     * @desc Support for SREM cancelation
     * @see  ETSI TS 103 191-1 Table A.5
     */
    modulepar boolean PICS_SREM_CANCELATION := true;

     * @desc Support for SREM reception
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.5
    modulepar boolean PICS_SREM_RECEPTION := true;
garciay's avatar
garciay committed
     * @desc Support for SSEM generation
     * @see  ETSI TS 103 191-1 Table A.5
garciay's avatar
garciay committed
    modulepar boolean PICS_SSEM_GENERATION := true;

    /**
     * @desc Support for SSEM reception
garciay's avatar
garciay committed
     * @see  ETSI TS 103 191-1 Table A.5
     */
    modulepar boolean PICS_SSEM_RECEPTION := true;

    /**
     * @desc Support for Short Range communication
     * @see  ETSI TS 103 191-1 Table A.5
     */
    modulepar boolean PICS_SHORT_RANGE := true;
    
    modulepar float PICS_T_GENSREMMIN := 0.5;
    
    /**
     * @desc Support for public transport vehicle
     * @see  ETSI TS 103 191-1 Table TODO
     */
    modulepar boolean PICS_PUBLIC_TRANSPORT := true;
    
    /**
     * @desc Support for TODO
     * @see  ETSI TS 103 191-1 Table TODO
     */
    modulepar boolean PICS_SREM_HAS_TIMING := true;

Yann Garcia's avatar
Yann Garcia committed
} // end LibItsSremSsem_Pics