2020-12-28 05:34:14 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "com.geeksville.mesh";
|
|
|
|
option optimize_for = LITE_RUNTIME;
|
|
|
|
|
2021-02-27 05:16:43 +00:00
|
|
|
import "channel.proto";
|
2020-12-28 05:34:14 +00:00
|
|
|
|
2021-02-27 05:43:36 +00:00
|
|
|
option java_outer_classname = "AppOnlyProtos";
|
|
|
|
|
2021-03-07 08:28:48 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2021-02-17 05:05:46 +00:00
|
|
|
message ChannelSet {
|
|
|
|
repeated ChannelSettings settings = 1;
|
2020-12-28 05:34:14 +00:00
|
|
|
}
|