Skip to content

Commit 2716831

Browse files
committed
Only show set point on pub
1 parent 7fb8a73 commit 2716831

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

protobuf_definitions/message_formats.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,13 +1108,11 @@ message CpProbe {
11081108
message GenericServo {
11091109
float value = 1; // Servo value (0..1).
11101110
GuestPortNumber guest_port_number = 2; // Guest port the servo is on.
1111-
float set_point = 3; // Servo set point (0..1).
11121111
}
11131112

11141113
// Servo message used to represent the angle of the servo.
11151114
message MultibeamServo {
11161115
float angle = 1; // Servo degrees (-30..30).
1117-
float set_point = 2; // Servo set point (-30..30).
11181116
}
11191117

11201118
// GuestPort current readings.

protobuf_definitions/telemetry.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,13 @@ message ConnectedClientsTel {
236236
// State of a generic servo.
237237
message GenericServoTel {
238238
GenericServo servo = 1; // Servo state.
239+
float set_point = 2; // Servo set point (0..1).
239240
}
240241

241242
// State of the servo installed in the multibeam.
242243
message MultibeamServoTel {
243244
MultibeamServo servo = 1; // Multibeam servo state.
245+
MultibeamServo set_point = 1; // Multibeam servo state.
244246
}
245247

246248
// GuestPort current readings.

0 commit comments

Comments
 (0)