Commit 591d5360 authored by berge's avatar berge
Browse files

Added TC_GEONW_CAP_FPB_BV_01

parent 7e24fbf3
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -912,6 +912,18 @@ module LibItsGeoNetworking_Functions {
            return v_itsGnLocationServicePacketBufferSize;
        } // end f_getLSPacketBufferSize
        
        /**
         * @desc Gets the UC forwarding packet buffer size.
         * @return 
         */        
        function f_getUcForwardingPacketBufferSize() return integer {
            var integer v_itsGnUcForwardingPacketBufferSize := 1024;
            
            //TODO get the value from PIXIT or MIB
            
            return v_itsGnUcForwardingPacketBufferSize;
        } // end f_getUcForwardingPacketBufferSize
        
        /**
         * @desc Gets the upper limit of the maximum lifetime.
         * @return 
+38 −0
Original line number Diff line number Diff line
@@ -827,4 +827,42 @@ module LibItsGeoNetworking_Templates {
        
    } // end geoNwHeadersTemplates
    
    group geoMiscTemplates {
        
        group geoDummyTemplates {
            
            template (value) GN_Address m_dummyGnAddr := {
                typeOfAddress := e_manual,
                stationType := {
                    vehicleStation := {
                        stationType := e_vehicleStation,
                        vsKind := e_car   
                    }
                },
                stationSubType := e_private,
                reserved := c_uInt2Zero,
                stationCountryCode := c_uInt12Zero,
                slac := c_uInt8Zero,
                mid := c_uInt36Zero              
            }
            
            template (value) LongPosVector m_dummyLongPosVector :={
                gnAddr := m_dummyGnAddr,
                timestamp := c_uInt32Zero,
                latitute := c_uInt32Zero,
                longitude := c_uInt32Zero,
                speed := c_uInt16Zero,
                heading := c_uInt16Zero,
                altitude := c_uInt16Zero,
                timeAccuracy := c_uInt4Zero,
                posAccuracy := c_uInt4Zero,
                speedAccuracy := c_uInt3Zero,
                headingAccuracy := c_uInt3Zero,
                altitudeAccuracy := c_uInt2Zero
            }
            
        } // end geoDummyTemplates
        
    } // end geoMiscTemplates
    
} // end ItsGeoNetworking_Templates
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -76,6 +76,7 @@ module LibItsGeoNetworking_TypesAndValues {
	    
	    // TODO add in Libcommon
	    const UInt24  c_uInt24Zero := 0;
	    const UInt36  c_uInt36Zero := 0;
	    
	} // end geoNwValues