JaiaBot 2.5.0
JaiaBot micro-AUV software
 
Loading...
Searching...
No Matches
config.proto
Go to the documentation of this file.
1// Copyright 2025:
2// JaiaRobotics LLC
3// File authors:
4// Matthew Ferro <matt.ferro@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/udp_config.proto";
27import "jaiabot/messages/sensor/turner__c_fluor.proto";
28
29package jaiabot.config;
30
31message TurnerCFluorSensorDriver
32{
33 // required parameters for ApplicationBase3 class
34 optional goby.middleware.protobuf.AppConfig app = 1;
35
36 optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
37
38 optional jaiabot.sensor.protobuf.FluorCoefficients fluorometer_coefficients = 3;
39
40 optional int32 turner_c_fluor_report_timeout_seconds = 10 [default = 40];
41}