meshtastic-protobuf/meshtastic/apponly.proto

32 wiersze
876 B
Protocol Buffer
Czysty Zwykły widok Historia

2020-12-28 05:34:14 +00:00
syntax = "proto3";
2023-01-17 11:03:10 +00:00
package meshtastic;
import "meshtastic/channel.proto";
import "meshtastic/config.proto";
2023-05-20 09:29:34 +00:00
option csharp_namespace = "Meshtastic.Protobufs";
option go_package = "github.com/meshtastic/go/generated";
option java_outer_classname = "AppOnlyProtos";
option java_package = "com.geeksville.mesh";
option swift_prefix = "";
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
/*
* Channel list with settings
2022-02-21 07:48:42 +00:00
*/
repeated ChannelSettings settings = 1;
/*
* LoRa config
*/
Config.LoRaConfig lora_config = 2;
}