From 33f08f8188df8073506847a4e984c43d442b4b69 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Fri, 4 Mar 2022 05:26:16 -0800 Subject: [PATCH] update snr --- mesh.proto | 2 +- telemetry.proto | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/mesh.proto b/mesh.proto index c47aa5c..efc0ee8 100644 --- a/mesh.proto +++ b/mesh.proto @@ -980,7 +980,7 @@ message NodeInfo { * Returns the Signal-to-noise ratio (SNR) of the last received message, * as measured by the receiver. Return SNR of the last received message in dB */ - float snr = 7; + float snr = 4; /* * TODO: REMOVE/INTEGRATE diff --git a/telemetry.proto b/telemetry.proto index fc027eb..e11393e 100644 --- a/telemetry.proto +++ b/telemetry.proto @@ -10,13 +10,13 @@ message Telemetry { * This is usually not sent over the mesh (to save space), but it is sent * from the phone so that the local device can set its RTC If it is sent over * the mesh (because there are devices on the mesh without GPS), it will only - * be sent by devices which has a hardware GPS clock. + * be sent by devices which has a hardware GPS clock (IE Mobile Phone). * seconds since 1970 */ fixed32 time = 1; /* - * 1-100 (0 means not provided) + * 1-100 (0 means powered) */ int32 battery_level = 2; @@ -32,10 +32,7 @@ message Telemetry { /* * This is sent by node only if it a router and if hop_limit is set to 0 - * and is not being sent as a reliable message. - * - * Note to Ben & Garth : When position is refactored, please move this to the same message - * "time" is moving to. + * and is not being sent as a reliable message. */ bool router_heartbeat = 5;