mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Merge https://github.com/meshtastic/protobufs into 7943-mute-target
This commit is contained in:
commit
dae16e8b42
4 changed files with 32 additions and 3 deletions
|
|
@ -108,6 +108,14 @@ message Config {
|
|||
* consuming hops.
|
||||
*/
|
||||
ROUTER_LATE = 11;
|
||||
|
||||
/*
|
||||
* Description: Treats packets from or to favorited nodes as ROUTER, and all other packets as CLIENT.
|
||||
* Technical Details: Used for stronger attic/roof nodes to distribute messages more widely
|
||||
* from weaker, indoor, or less-well-positioned nodes. Recommended for users with multiple nodes
|
||||
* where one CLIENT_BASE acts as a more powerful base station, such as an attic/roof node.
|
||||
*/
|
||||
CLIENT_BASE = 12;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -314,6 +314,11 @@ enum Language {
|
|||
*/
|
||||
BULGARIAN = 17;
|
||||
|
||||
/*
|
||||
* Czech
|
||||
*/
|
||||
CZECH = 18;
|
||||
|
||||
/*
|
||||
* Simplified Chinese (experimental)
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -755,9 +755,9 @@ enum HardwareModel {
|
|||
T_LORA_PAGER = 103;
|
||||
|
||||
/*
|
||||
* GAT562 Mesh Trial Tracker
|
||||
* M5Stack Reserved
|
||||
*/
|
||||
GAT562_MESH_TRIAL_TRACKER = 104;
|
||||
M5STACK_RESERVED = 104; // 0x68
|
||||
|
||||
/*
|
||||
* RAKwireless WisMesh Tag
|
||||
|
|
@ -779,12 +779,22 @@ enum HardwareModel {
|
|||
* https://heltec.org/project/meshsolar/
|
||||
*/
|
||||
HELTEC_MESH_SOLAR = 108;
|
||||
|
||||
|
||||
/*
|
||||
* Lilygo T-Echo Lite
|
||||
*/
|
||||
T_ECHO_LITE = 109;
|
||||
|
||||
/*
|
||||
* New Heltec LoRA32 with ESP32-S3 CPU
|
||||
*/
|
||||
HELTEC_V4 = 110;
|
||||
|
||||
/*
|
||||
* M5Stack C6L
|
||||
*/
|
||||
M5STACK_C6L = 111;
|
||||
|
||||
/*
|
||||
* ------------------------------------------------------------------------------------------------------------------------------------------
|
||||
* Reserved ID For developing private Ports. These will show up in live traffic sparsely, so we can use a high number. Keep it within 8 bits.
|
||||
|
|
|
|||
|
|
@ -530,6 +530,12 @@ message ModuleConfig {
|
|||
* ESP32 Only
|
||||
*/
|
||||
bool save = 3;
|
||||
|
||||
/*
|
||||
* Bool indicating that the node should cleanup / destroy it's RangeTest.csv file.
|
||||
* ESP32 Only
|
||||
*/
|
||||
bool clear_on_reboot = 4;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue