Goby3 3.2.3
2025.05.13
Loading...
Searching...
No Matches
abc_driver.proto
Go to the documentation of this file.
1syntax = "proto2";
2import "goby/acomms/protobuf/driver_base.proto"; // load up message DriverBaseConfig
3
4package goby.acomms.abc.protobuf;
5
6message Config
7{
8 optional bool enable_foo = 1 [default = true];
9 optional bool enable_bar = 2 [default = false];
10}
11
12extend goby.acomms.protobuf.DriverConfig
13{
14 optional Config config = 1201;
15}