4 // Toby Schneider <toby@gobysoft.org>
7 // This file is part of the JaiaBot Project Binaries
8 // ("The Jaia Binaries").
10 // The Jaia Binaries are free software: you can redistribute them and/or modify
11 // them under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 2 of the License, or
13 // (at your option) any later version.
15 // The Jaia Binaries are distributed in the hope that they will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License
21 // along with the Jaia Binaries. If not, see <http://www.gnu.org/licenses/>.
25 import "dccl/option_extensions.proto";
26 import "goby/middleware/protobuf/app_config.proto";
27 import "goby/zeromq/protobuf/interprocess_config.proto";
28 import "jaiabot/messages/low_control.proto";
29 import "jaiabot/messages/high_control.proto";
31 package jaiabot.config;
33 message MissionRepeater
38 optional goby.middleware.protobuf.AppConfig app = 1;
39 optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2;
41 required int32 bot_id = 10;
47 required double duration = 1
48 [(dccl.field) = { units { derived_dimensions: "time" } }];
50 // for ease of log parsing
51 required int32 step_marker = 2;
53 // repeat publication with this number of seconds between publishes
54 // if omitted, does not repeat
55 optional double repeat_interval = 3
56 [(dccl.field) = { units { derived_dimensions: "time" } }];
59 protobuf.DesiredSetpoints desired_setpoints = 10;
60 protobuf.LowControl low_control = 11;
63 repeated Step step = 1;
66 required Script script = 20;