Skip to content

Commit b1918de

Browse files
authored
Merge pull request #232 from BluEye-Robotics/jp-pino/iperf-controls
2 parents 6835516 + 215fd1a commit b1918de

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

protobuf_definitions/req_rep.proto

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,3 +207,22 @@ message FlashEscSettingsReq {
207207
message FlashEscSettingsRep {
208208
bool success = 1; // If the ESC settings were flashed successfully.
209209
}
210+
211+
// Request to set iperf task status.
212+
message SetIperfStatusReq {
213+
bool enabled = 1; // If background iperf task should be enabled or disabled.
214+
}
215+
216+
// Response after setting iperf status.
217+
message SetIperfStatusRep {
218+
bool enabled = 1; // If background iperf task is enabled or disabled.
219+
}
220+
221+
// Request to get current iperf task status.
222+
message GetIperfStatusReq {
223+
}
224+
225+
// Response with current iperf status.
226+
message GetIperfStatusRep {
227+
bool enabled = 1; // If background iperf task is enabled or disabled.
228+
}

0 commit comments

Comments
 (0)