Goby Underwater Autonomy Project
Series: 1.1, revision: 163, released on 2013-02-06 14:23:27 -0500
|
00001 import "goby/protobuf/option_extensions.proto"; 00002 00003 message AppBaseConfig 00004 { 00005 required string platform_name = 1 [(example)="AUV-23", 00006 (description) = "same as self.name for gobyd cfg"]; 00007 00008 optional string app_name = 3 [(example)="myapp_g", 00009 (description) = "default is compiled name - change this to run multiple instances"]; 00010 00011 enum Verbosity 00012 { 00013 QUIET = 1; 00014 WARN = 2; 00015 VERBOSE = 3; 00016 DEBUG = 4; 00017 GUI = 5; 00018 } 00019 00020 optional Verbosity verbosity = 4 [default = QUIET, 00021 (description)="Terminal verbosity"]; 00022 00023 00024 // used only by ApplicationBase, ignored by gobyd 00025 optional float loop_freq = 100 [default = 10, 00026 (description) = "the frequency (Hz) used to run loop()"]; 00027 } 00028