Skip to content
Open
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
8 changes: 8 additions & 0 deletions meshtastic/mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,10 @@ message RouteDiscovery {

/*
* The list of SNRs (in dB, scaled by 4) in the route towards the destination.
* Special values (ouside normal SNR range) are used as flags:
* -128 : Unknonw SNR
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo

* -127 : MQTT hop
* 127 : UDP hop
*/
repeated int32 snr_towards = 2;

Expand All @@ -985,6 +989,10 @@ message RouteDiscovery {

/*
* The list of SNRs (in dB, scaled by 4) in the route back from the destination.
* Special values (ouside normal SNR range) are used as flags:
* -128 : Unknonw SNR
* -127 : MQTT hop
* 127 : UDP hop
*/
repeated int32 snr_back = 4;
}
Expand Down