Skip to content

Commit

Permalink
Merge branch 'meshtastic:master' into router-infill
Browse files Browse the repository at this point in the history
  • Loading branch information
erayd authored Dec 21, 2024
2 parents 100a868 + 2cffaf5 commit 9e3a4ed
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
15 changes: 14 additions & 1 deletion meshtastic/mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,14 @@ enum HardwareModel {
*/
ROUTASTIC = 85;

/*
* Mesh-Tab, esp32 based
* https://github.com/valzzu/Mesh-Tab
*/
MESH_TAB = 86;



/*
* ------------------------------------------------------------------------------------------------------------------------------------------
* 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 Expand Up @@ -1087,6 +1095,11 @@ message MeshPacket {
*/
HIGH = 100;

/*
* Higher priority alert message used for critical alerts which take priority over other reliable packets.
*/
ALERT = 110;

/*
* Ack/naks are sent with very high priority to ensure that retransmission
* stops as soon as possible
Expand Down Expand Up @@ -2073,4 +2086,4 @@ message ChunkedPayloadResponse {
*/
resend_chunks resend_chunks = 4;
}
}
}
5 changes: 5 additions & 0 deletions meshtastic/portnums.proto
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ enum PortNum {
*/
DETECTION_SENSOR_APP = 10;

/*
* Same as Text Message but used for critical alerts.
*/
ALERT_APP = 11;

/*
* Provides a 'ping' service that replies to any packet it receives.
* Also serves as a small example module.
Expand Down
5 changes: 5 additions & 0 deletions meshtastic/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,11 @@ enum TelemetrySensorType {
* ClimateGuard RadSens, radiation, Geiger-Muller Tube
*/
RADSENS = 33;

/*
* High accuracy current and voltage
*/
INA226 = 34;

}

Expand Down

0 comments on commit 9e3a4ed

Please sign in to comment.