Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions meshtastic/mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 1 addition & 3 deletions meshtastic/module_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
16 changes: 8 additions & 8 deletions meshtastic/powermon.proto
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
syntax = "proto3";

package meshtastic;
Expand All @@ -22,14 +22,14 @@
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;

Expand Down
Loading