2020-12-28 05:34:14 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "com.geeksville.mesh";
|
|
|
|
option optimize_for = LITE_RUNTIME;
|
2021-05-24 00:31:38 +00:00
|
|
|
option go_package = "github.com/meshtastic/gomeshproto";
|
2020-12-28 05:34:14 +00:00
|
|
|
|
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
|
|
|
/*
|
2021-04-20 09:08:28 +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.
|
2021-03-07 08:28:48 +00:00
|
|
|
* 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 {
|
2022-02-21 07:48:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: REPLACE
|
|
|
|
*/
|
2021-11-30 19:45:01 +00:00
|
|
|
repeated ChannelSettings settings = 1;
|
2020-12-28 05:34:14 +00:00
|
|
|
}
|