GobySoft / goby3

The Goby Underwater Autonomy Project Version 3
Other
24 stars 11 forks source link

'goby' tool additions #313

Closed tsaubergine closed 9 months ago

tsaubergine commented 9 months ago
export GOBY_TOOL_LOAD_SHARED_LIBRARY=/home/toby/opensource/goby3-examples/build/lib/libgoby3_example_messages.so

> goby protobuf show protobuf.NavigationReport
============== protobuf.NavigationReport============== 
message NavigationReport {
  enum VehicleClass {
    AUV = 1;
    USV = 2;
    SHIP = 3;
  }
  required double x = 1;
  required double y = 2;
  required double z = 3;
  optional .protobuf.NavigationReport.VehicleClass veh_class = 4;
  optional bool battery_ok = 5;
}