meshtastic-protobuf/apponly.proto

24 wiersze
691 B
Protocol Buffer
Czysty Zwykły widok Historia

2020-12-28 05:34:14 +00:00
syntax = "proto3";
option java_package = "com.geeksville.mesh";
option optimize_for = LITE_RUNTIME;
option go_package = "github.com/meshtastic/gomeshproto";
2020-12-28 05:34:14 +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
*/
repeated ChannelSettings settings = 1;
2020-12-28 05:34:14 +00:00
}