mirror of
https://github.com/commaai/msgq.git
synced 2026-06-13 00:14:32 +08:00
Add bearing degree to GnssMeasurements struct (#304)
This commit is contained in:
13
log.capnp
13
log.capnp
@@ -1077,11 +1077,16 @@ struct ProcLog {
|
||||
}
|
||||
|
||||
struct GnssMeasurements {
|
||||
positionECEF @0 :List(Float64);
|
||||
velocityECEF @1 :List(Float64);
|
||||
ubloxMonoTime @0 :UInt64;
|
||||
correctedMeasurements @1 :List(CorrectedMeasurement);
|
||||
|
||||
positionECEF @2 :List(Float64);
|
||||
velocityECEF @3 :List(Float64);
|
||||
# todo add accuracy of position?
|
||||
# Represents heading in degrees.
|
||||
bearingDeg @4 :Float32;
|
||||
bearingAccuracyDeg @5 :Float32;
|
||||
# Todo sync this with timing pulse of ublox
|
||||
ubloxMonoTime @2 :UInt64;
|
||||
correctedMeasurements @3 :List(CorrectedMeasurement);
|
||||
|
||||
struct CorrectedMeasurement {
|
||||
constellationId @0 :ConstellationId;
|
||||
|
||||
Reference in New Issue
Block a user