This commit is contained in:
Fernando Nunes 2026-04-17 15:43:53 -05:00 committed by GitHub
commit 2fa44e3669
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -988,6 +988,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
* -127 : MQTT hop
* 127 : UDP hop
*/
repeated int32 snr_towards = 2;
@ -998,6 +1002,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;
}