This commit is contained in:
ford-jones 2025-09-16 19:25:39 +12:00
commit dae16e8b42
4 changed files with 32 additions and 3 deletions

View file

@ -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;
}
/*

View file

@ -314,6 +314,11 @@ enum Language {
*/
BULGARIAN = 17;
/*
* Czech
*/
CZECH = 18;
/*
* Simplified Chinese (experimental)
*/

View file

@ -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.

View file

@ -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;
}
/*