Skip to content

Commit 8905b60

Browse files
committed
Add telemetry message and fix prop name
1 parent 77e9b45 commit 8905b60

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

protobuf_definitions/message_formats.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,5 +1244,5 @@ message SurfaceUnitBattery {
12441244
// This message is published by the Surface Unit, and re-published by
12451245
// the drone over the communication protocol.
12461246
message SurfaceUnitVersionInfo {
1247-
string firmware_version = 1; // Surface Unit firmware version (x.y.z).
1247+
string version = 1; // Surface Unit firmware version (x.y.z).
12481248
}

protobuf_definitions/telemetry.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,3 +287,9 @@ message MultibeamDiscoveryTel {
287287
message CPUInfoTel {
288288
CPUInfo cpu_info = 1; // CPU information.
289289
}
290+
291+
// Surface Unit telemetry message.
292+
message SurfaceUnitTel {
293+
SurfaceUnitBatteryTel battery_info = 1; // Battery information.
294+
SurfaceUnitVersionInfo version_info = 2; // Version information.
295+
}

0 commit comments

Comments
 (0)