JaiaBot  1.19.0
JaiaBot micro-AUV software
config.proto
Go to the documentation of this file.
1 // Copyright 2021:
2 // JaiaRobotics LLC
3 // File authors:
4 // Toby Schneider <toby@gobysoft.org>
5 // Edited by Ed Sanville <edsanville@gmail.com>
6 //
7 //
8 // This file is part of the JaiaBot Hydro Project Binaries
9 // ("The Jaia Binaries").
10 //
11 // The Jaia Binaries are free software: you can redistribute them and/or modify
12 // them under the terms of the GNU General Public License as published by
13 // the Free Software Foundation, either version 2 of the License, or
14 // (at your option) any later version.
15 //
16 // The Jaia Binaries are distributed in the hope that they will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with the Jaia Binaries. If not, see <http://www.gnu.org/licenses/>.
23 
24 syntax = "proto2";
25 
26 import "goby/middleware/protobuf/app_config.proto";
27 import "goby/zeromq/protobuf/interprocess_config.proto";
28 import "goby/middleware/protobuf/udp_config.proto";
29 
30 import "jaiabot/messages/imu.proto";
31 
32 package jaiabot.config;
33 
34 message AdaFruitBNO055Publisher
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  required goby.middleware.protobuf.UDPPointToPointConfig udp_config = 3;
42 
43  optional int32 adafruit_bno055_report_timeout_seconds = 10 [default = 30];
44  optional bool adafruit_bno055_report_in_simulation = 11 [default = true];
45  optional jaiabot.protobuf.IMUIssue.SolutionType imu_issue_solution = 12 [default = RESTART_IMU_PY];
46  optional int32 imu_trigger_issue_timeout_seconds = 13 [default = 30];
47 }