Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions protobuf_definitions/req_rep.proto
Original file line number Diff line number Diff line change
Expand Up @@ -207,3 +207,22 @@ message FlashEscSettingsReq {
message FlashEscSettingsRep {
bool success = 1; // If the ESC settings were flashed successfully.
}

// Request to set iperf task status.
message SetIperfStatusReq {
bool enabled = 1; // If background iperf task should be enabled or disabled.
}

// Response after setting iperf status.
message SetIperfStatusRep {
bool enabled = 1; // If background iperf task is enabled or disabled.
}

// Request to get current iperf task status.
message GetIperfStatusReq {
}

// Response with current iperf status.
message GetIperfStatusRep {
bool enabled = 1; // If background iperf task is enabled or disabled.
}