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