diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 507f636d7..062faf89f 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -933,6 +933,11 @@ enum HardwareModel { */ MESHNOLOGY_W10 = 140; + /* + * LilyGo T-Deck Max, ESP32-S3 handheld with e-paper display and SX1262 radio + */ + T_DECK_MAX = 141; + /* * ------------------------------------------------------------------------------------------------------------------------------------------ * 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. diff --git a/meshtastic/module_config.proto b/meshtastic/module_config.proto index 562a447ad..a67b69189 100644 --- a/meshtastic/module_config.proto +++ b/meshtastic/module_config.proto @@ -308,9 +308,7 @@ message ModuleConfig { // from the channel's own position_precision ceiling. // None of these tags ever shipped in a stable release. reserved 1, 2, 3, 5, 7, 10, 12, 13, 14; - reserved "enabled", "position_dedup_enabled", "position_precision_bits", - "nodeinfo_direct_response", "rate_limit_enabled", "drop_unknown_enabled", - "exhaust_hop_telemetry", "exhaust_hop_position", "router_preserve_hops"; + reserved "enabled", "position_dedup_enabled", "position_precision_bits", "nodeinfo_direct_response", "rate_limit_enabled", "drop_unknown_enabled", "exhaust_hop_telemetry", "exhaust_hop_position", "router_preserve_hops"; /* * Minimum interval in seconds between position updates from the same node. diff --git a/meshtastic/powermon.proto b/meshtastic/powermon.proto index f4304812d..5973b16f6 100644 --- a/meshtastic/powermon.proto +++ b/meshtastic/powermon.proto @@ -22,14 +22,14 @@ message PowerMon { CPU_LightSleep = 0x02; /* - The external Vext1 power is on. Many boards have auxillary power rails that the CPU turns on only - occasionally. In cases where that rail has multiple devices on it we usually want to have logging on - the state of that rail as an independent record. - For instance on the Heltec Tracker 1.1 board, this rail is the power source for the GPS and screen. - - The log messages will be short and complete (see PowerMon.Event in the protobufs for details). - something like "S:PM:C,0x00001234,REASON" where the hex number is the bitmask of all current states. - (We use a bitmask for states so that if a log message gets lost it won't be fatal) + The external Vext1 power is on. Many boards have auxillary power rails that the CPU turns on only + occasionally. In cases where that rail has multiple devices on it we usually want to have logging on + the state of that rail as an independent record. + For instance on the Heltec Tracker 1.1 board, this rail is the power source for the GPS and screen. + + The log messages will be short and complete (see PowerMon.Event in the protobufs for details). + something like "S:PM:C,0x00001234,REASON" where the hex number is the bitmask of all current states. + (We use a bitmask for states so that if a log message gets lost it won't be fatal) */ Vext1_On = 0x04;