Goby3  3.1.5
2024.05.14
gps_config.proto
Go to the documentation of this file.
1 syntax = "proto2";
2 import "goby/middleware/protobuf/app_config.proto";
3 import "goby/zeromq/protobuf/interprocess_config.proto";
4 import "goby/protobuf/option_extensions.proto";
5 import "goby/middleware/protobuf/tcp_config.proto";
6 
7 package goby.apps.zeromq.protobuf;
8 
9 message GPSDConfig
10 {
11  optional goby.middleware.protobuf.AppConfig app = 1;
12  optional goby.zeromq.protobuf.InterProcessPortalConfig interprocess = 2 [(goby.field) = { cfg { env: "GOBY_INTERPROCESS" } }];
13 
14 
15  required goby.middleware.protobuf.TCPClientConfig gpsd = 3;
16 
17  repeated string device_name = 5;
18 }