Commit 42c696d7 authored by berge's avatar berge
Browse files

Fixed definition of position vectors: some fields are signed!

parent a72ffd30
Loading
Loading
Loading
Loading
+6 −6
Original line number Original line Diff line number Diff line
@@ -601,11 +601,11 @@ module LibItsGeoNetworking_TypesAndValues {
                type record LongPosVector {
                type record LongPosVector {
                    GN_Address  gnAddr,
                    GN_Address  gnAddr,
                    UInt32      timestamp,
                    UInt32      timestamp,
                    UInt32      latitude,
                    Int32       latitude,
                    UInt32      longitude,
                    Int32       longitude,
                    UInt16      speed,
                    Int16       speed,
                    UInt16      heading,
                    UInt16      heading,
                    UInt16      altitude,
                    Int16       altitude,
                    UInt4       timeAccuracy,
                    UInt4       timeAccuracy,
                    UInt4       posAccuracy,
                    UInt4       posAccuracy,
                    UInt3       speedAccuracy,
                    UInt3       speedAccuracy,
@@ -679,8 +679,8 @@ module LibItsGeoNetworking_TypesAndValues {
                type record ShortPosVector {
                type record ShortPosVector {
                    GN_Address  gnAddr,
                    GN_Address  gnAddr,
                    UInt32      timestamp,
                    UInt32      timestamp,
                    UInt32      latitude,
                    Int32       latitude,
                    UInt32      longitude
                    Int32       longitude
                }
                }
            
            
                /**
                /**