JaiaBot 2.6.0
JaiaBot micro-AUV software
 
Loading...
Searching...
No Matches
config.proto
Go to the documentation of this file.
1// Copyright 2026:
2// JaiaRobotics LLC
3// File authors:
4// Michael Twomey <michael.twomey@jaia.tech>
5//
6// This file is part of the JaiaBot Hydro Project Binaries
7// ("The Jaia Binaries").
8//
9// The Jaia Binaries are free software: you can redistribute them and/or modify
10// them under the terms of the GNU General Public License as published by
11// the Free Software Foundation, either version 2 of the License, or
12// (at your option) any later version.
13//
14// The Jaia Binaries are distributed in the hope that they will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18//
19// You should have received a copy of the GNU General Public License
20// along with the Jaia Binaries. If not, see <http://www.gnu.org/licenses/>.
21
22syntax = "proto2";
23
24import "goby/middleware/protobuf/app_config.proto";
25import "goby/zeromq/protobuf/interprocess_config.proto";
26import "goby/middleware/protobuf/serial_config.proto";
27
28package jaiabot.config;
29
30message AMLCatalog {
31 optional string conductivity = 1;
32}
33
34message AMLSensorDriver
35{
36 // required parameters for ApplicationBase3 class
37 optional goby.middleware.protobuf.AppConfig app = 1;
38
39 optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
40
41 optional int32 aml_report_timeout_seconds = 10 [default = 40];
42 optional int32 output_rate = 11 [default = 25];
43
44 optional goby.middleware.protobuf.SerialConfig serial = 20;
45
46 optional AMLCatalog catalog = 30;
47}