LibItsGeoNetworking_Pixits.ttcn 1.05 KB
Newer Older
fischer's avatar
fischer committed
/**
 *	@author 	ETSI / STF405
berge's avatar
berge committed
 *  @version 	$URL$
 *				$Id$
fischer's avatar
fischer committed
 *	@desc		CAM PICS
 *
 */
module LibItsGeoNetworking_Pixits {
    
    // LibCommon
    import from LibCommon_BasicTypesAndValues all;
    
    group geoNetworkingPixits {
        
    group CongestionControl {
        
        /**
         * @desc    Nr of neighbour limit to enter the "medium" congestion status value
fischer's avatar
fischer committed
         */
    	modulepar integer PX_MIN_NR_NEIGHBOUR := 50;

        /**
         * @desc    Nr of neighbour limit to enter the "maximum" congestion status value
fischer's avatar
fischer committed
         */
    	modulepar integer PX_MAX_NR_NEIGHBOUR := 50;

        /**
         * @desc    Number of 1/10 micro degrees in one unit of distance
         * @remark  This Pixit is used to position nodes relatively to each other.
         *          It corresponds to the distance betwen 2 nodes (10000 ~ 100m).
         */
berge's avatar
berge committed
        modulepar UInt32 PX_DISTANCE_UNIT := 10000;
fischer's avatar
fischer committed
    } // end of group

    } // end of group geoNetworkingPixits
    
} // end of module LibItsGeoNetworking_Pixits