Commit ca067369 authored by berge's avatar berge
Browse files

Fixed definition of position vectors: some fields are signed!

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