Commit 063e8d82 authored by berge's avatar berge
Browse files

Fixed cycling import between GN Functions & TestSystem

parent 0b216762
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -716,6 +716,9 @@ module LibItsGeoNetworking_Functions {
            vc_areaTable := p_areaTable;
            vc_componentName := p_componentName;
            
            vc_localSeqNumber := f_getInitialSequenceNumber();
			vc_multipleMessagesCount := f_getMessageCount();
            
            f_setGenerationLocation(
                f_getTsLatitude(),
                f_getTsLongitude()
+2 −3
Original line number Diff line number Diff line
@@ -22,7 +22,6 @@ module LibItsGeoNetworking_TestSystem {
    
    // LibItsGeoNetworking
    import from LibItsGeoNetworking_TypesAndValues all;
    import from LibItsGeoNetworking_Functions all;
    
    // LibItsSecurity
    import from LibItsSecurity_TestSystem all;
@@ -118,12 +117,12 @@ module LibItsGeoNetworking_TestSystem {
        port GeoNetworkingPort geoNetworkingPort;
        
        //variables for Gn
        var UInt16 vc_localSeqNumber := f_getInitialSequenceNumber();
        var UInt16 vc_localSeqNumber := 0; 
        var PositionTable vc_positionTable := {};
        var GeoAreaTable vc_areaTable := {};
        var charstring vc_componentName := "";
        var default vc_neighbourDefault;
        var integer vc_multipleMessagesCount := f_getMessageCount();
        var integer vc_multipleMessagesCount := 0; 
        
        // UT indications
        var UtGnEventIndList vc_utInds := {};