kopia lustrzana https://github.com/meshtastic/protobufs
20 wiersze
660 B
Protocol Buffer
20 wiersze
660 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "com.geeksville.mesh";
|
|
option optimize_for = LITE_RUNTIME;
|
|
option go_package = "github.com/meshtastic/gomeshproto";
|
|
|
|
import "channel.proto";
|
|
|
|
option java_outer_classname = "AppOnlyProtos";
|
|
|
|
/*
|
|
* This is the most compact possible representation for a set of channels.
|
|
* It includes only one PRIMARY channel (which must be first) and
|
|
* any SECONDARY channels.
|
|
* No DISABLED channels are included.
|
|
* This abstraction is used only on the the 'app side' of the world (ie python, javascript and android etc) to show a group of Channels as a (long) URL
|
|
*/
|
|
message ChannelSet {
|
|
repeated ChannelSettings settings = 1;
|
|
} |