4 // Toby Schneider <toby@gobysoft.org>
5 // Edited by Ed Sanville <edsanville@gmail.com>
8 // This file is part of the JaiaBot Hydro Project Binaries
9 // ("The Jaia Binaries").
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.
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.
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/>.
26 import "goby/middleware/protobuf/app_config.proto";
27 import "goby/zeromq/protobuf/interprocess_config.proto";
28 import "goby/middleware/protobuf/udp_config.proto";
30 import "jaiabot/messages/imu.proto";
32 package jaiabot.config;
34 message AdaFruitBNO055Publisher
36 // required parameters for ApplicationBase3 class
37 optional goby.middleware.protobuf.AppConfig app = 1;
39 optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
41 required goby.middleware.protobuf.UDPPointToPointConfig udp_config = 3;
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];