Skip to content

Commit 2e7f4b9

Browse files
committed
Added ublox hw status
1 parent 23abef4 commit 2e7f4b9

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

log.capnp

+23-1
Original file line numberDiff line numberDiff line change
@@ -1432,6 +1432,7 @@ struct UbloxGnss {
14321432
measurementReport @0 :MeasurementReport;
14331433
ephemeris @1 :Ephemeris;
14341434
ionoData @2 :IonoData;
1435+
hwStatus @3 :HwStatus;
14351436
}
14361437

14371438
struct MeasurementReport {
@@ -1555,8 +1556,29 @@ struct UbloxGnss {
15551556
healthValid @5 :Bool;
15561557
ionoCoeffsValid @6 :Bool;
15571558
}
1558-
}
15591559

1560+
struct HwStatus {
1561+
noisePerMS @0 :UInt16;
1562+
agcCnt @1 :UInt16;
1563+
aStatus @2 :AntennaSupervisorState;
1564+
aPower @3 :AntennaPowerStatus;
1565+
jamInd @4 :UInt8;
1566+
1567+
enum AntennaSupervisorState {
1568+
init @0;
1569+
dontknow @1;
1570+
ok @2;
1571+
short @3;
1572+
open @4;
1573+
}
1574+
1575+
enum AntennaPowerStatus {
1576+
off @0;
1577+
on @1;
1578+
dontknow @2;
1579+
}
1580+
}
1581+
}
15601582

15611583
struct Clocks {
15621584
bootTimeNanos @0 :UInt64;

0 commit comments

Comments
 (0)