From a25597f3b4311b2bf7132b891b1b8bf1ff8b8c4a Mon Sep 17 00:00:00 2001 From: Juan Pablo Pino Bravo Date: Thu, 5 Mar 2026 21:13:10 +0100 Subject: [PATCH] Add log streaming control messages for starting and stopping log entries --- protobuf_definitions/control.proto | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/protobuf_definitions/control.proto b/protobuf_definitions/control.proto index 3431dad6..39e7eb23 100644 --- a/protobuf_definitions/control.proto +++ b/protobuf_definitions/control.proto @@ -238,3 +238,11 @@ message SetTurbidityFilterCtrl { message CameraPanTiltZoomCtrl { CameraPanTiltZoom camera_pan_tilt_zoom = 1; // The desired pan, tilt, and zoom state. } + +// Message sent to start streaming log entries to the client. +message StartLogStreamingCtrl { +} + +// Message sent to stop streaming log entries to the client. +message StopLogStreamingCtrl { +}