Skip to content

Commit dc0e9c8

Browse files
authored
Merge pull request #157 from BluEye-Robotics/start-end-dive-ctrl
Add StartDiveCtrl and EndDiveCtrl messages
2 parents bca58e7 + 63f4fd0 commit dc0e9c8

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

Blueye.Protocol.Protobuf.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<LangVersion>8.0</LangVersion>
77
<PackageId>Blueye.Protocol.Protobuf</PackageId>
8-
<VersionPrefix>4.3.0</VersionPrefix>
8+
<VersionPrefix>4.4.0</VersionPrefix>
99
<Company>Blueye Robotics AS</Company>
1010
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
1111
<PackageDescription>Library with dotnet representation of the ProtocolDefinition protobuf files.</PackageDescription>

protobuf_definitions/control.proto

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,3 +201,17 @@ message ActivateMultibeamCtrl {
201201
// Deactivate multibeam
202202
message DeactivateMultibeamCtrl {
203203
}
204+
205+
// Message sent when the user hits the start dive button in the app.
206+
//
207+
// The message does not do anything, but is included in the log files so we can see
208+
// at which point the user entered the dive view.
209+
message StartDiveCtrl {
210+
}
211+
212+
// Message sent when the user hits the end dive button in the app.
213+
//
214+
// The message does not do anything, but is included in the log files so we can see
215+
// at which point the user exited the dive view.
216+
message EndDiveCtrl {
217+
}

0 commit comments

Comments
 (0)