meshtastic-protobuf/device_metadata.proto

22 wiersze
427 B
Protocol Buffer
Czysty Zwykły widok Historia

2022-08-07 23:52:28 +00:00
syntax = "proto3";
option java_package = "com.geeksville.mesh";
option optimize_for = LITE_RUNTIME;
option go_package = "github.com/meshtastic/gomeshproto";
option java_outer_classname = "DeviceMetadataProtos";
2022-08-07 23:39:54 +00:00
/*
* Device metadata response
*/
2022-08-07 23:53:58 +00:00
message DeviceMetadata {
2022-08-07 23:39:54 +00:00
/*
* Device firmware version string
*/
2022-08-07 23:50:18 +00:00
string firmware_version = 1;
2022-08-07 23:39:54 +00:00
/*
* Device state version
*/
2022-08-07 23:50:18 +00:00
uint32 device_state_version = 2;
2022-08-07 23:39:54 +00:00
}