2import "goby/acomms/protobuf/driver_base.proto"; // load up message DriverBaseConfig
3import "goby/protobuf/option_extensions.proto";
4import "dccl/option_extensions.proto";
14 optional uint64 network_id = 1 [
16 (goby.field).description =
17 "Network ID for this fleet (must match other peers in fleet): sets Xbee ATID=network_id"
20 optional bool test_comms = 4 [
22 (goby.field).description =
23 "If true, enables testing functionality and diagnostics"
25 optional string xbee_info_location = 5 [
26 default = "/etc/jaiabot/xbee_info.pb.cfg",
27 (goby.field).description =
28 "Location to write a file with serial number and node id to be used by jaiabot_metadata."
31 optional bool use_xbee_encryption = 7 [
33 (goby.field).description =
34 "This is used to determine if we should enable encryption."
37 optional string xbee_encryption_password = 8 [
39 (goby.field).description =
40 "This is used for the encryption password. Password is a 128 bit value (16 bytes)"
43 optional string xbee_mesh_unicast_retries = 10 [
45 (goby.field).description =
46 "Set or read the maximum number of network packet delivery attempts."
49 optional string xbee_unicast_mac_retries = 11 [
51 (goby.field).description =
52 "Set or read the maximum number of MAC level packet delivery attempts for unicasts."
55 optional string xbee_network_delay_slots = 12 [
57 (goby.field).description =
58 "Set or read the maximum random number of network delay slots before rebroadcasting a network packet."
61 optional string xbee_broadcast_multi_transmits = 13 [
63 (goby.field).description =
64 "Set or read the number of additional MAC-level broadcast transmissions."
67 required int32 fleet_id = 14 [(goby.field).description = "Fleet ID"];
69 required uint32 subnet_mask = 15;
71 optional bool is_in_sim = 16 [
73 (goby.field).description =
74 "This is used to determine if a simulated XBee needs to be launched"
78extend goby.acomms.protobuf.DriverConfig
80 optional Config config = 1500;