4// Michael Twomey <michael.twomey@jaia.tech>
6// This file is part of the JaiaBot Hydro Project Binaries
7// ("The Jaia Binaries").
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.
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.
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/>.
24import "goby/middleware/protobuf/app_config.proto";
25import "goby/zeromq/protobuf/interprocess_config.proto";
26import "goby/middleware/protobuf/serial_config.proto";
28package jaiabot.config;
31 optional string conductivity = 1;
34message AMLSensorDriver
36 // required parameters for ApplicationBase3 class
37 optional goby.middleware.protobuf.AppConfig app = 1;
39 optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
41 optional int32 aml_report_timeout_seconds = 10 [default = 40];
42 optional int32 output_rate = 11 [default = 25];
44 optional goby.middleware.protobuf.SerialConfig serial = 20;
46 optional AMLCatalog catalog = 30;