From 020ef9eea8129756a0b45be5a3900b0355be4451 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Mon, 21 Dec 2020 10:21:34 +0800 Subject: [PATCH] remove unused param --- docs/docs.md | 1 - mesh.proto | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/docs.md b/docs/docs.md index 2d1674e..cc03cbf 100644 --- a/docs/docs.md +++ b/docs/docs.md @@ -317,7 +317,6 @@ see sw-design.md for more information on these preferences | ----- | ---- | ----- | ----------- | | position_broadcast_secs | [uint32](#uint32) | | We should send our position this often (but only if it has changed significantly). Defaults to 15 minutes | | send_owner_interval | [uint32](#uint32) | | Send our owner info at least this often (also we always send once at boot - to rejoin the mesh) | -| num_missed_to_fail | [uint32](#uint32) | | If we miss this many owner messages from a node, we declare the node / offline (defaults to 3 - to allow for some lost packets) | | wait_bluetooth_secs | [uint32](#uint32) | | Power management state machine option. See https://github.com/meshtastic/Meshtastic-device/blob/master/docs/software/power.md for details. 0 for default of 1 minute | | screen_on_secs | [uint32](#uint32) | | Power management state machine option. See https://github.com/meshtastic/Meshtastic-device/blob/master/docs/software/power.md for details. 0 for default of one minute | | phone_timeout_secs | [uint32](#uint32) | | Power management state machine option. See https://github.com/meshtastic/Meshtastic-device/blob/master/docs/software/power.md for details. 0 for default of 15 minutes | diff --git a/mesh.proto b/mesh.proto index 24a4624..f1fef18 100644 --- a/mesh.proto +++ b/mesh.proto @@ -513,8 +513,8 @@ message RadioConfig { uint32 send_owner_interval = 2; /// If we miss this many owner messages from a node, we declare the node - /// offline (defaults to 3 - to allow for some lost packets) - uint32 num_missed_to_fail = 3; + /// offline (defaults to 3 - to allow for some lost packets) (FIXME not yet used) + // uint32 num_missed_to_fail = 3; uint32 wait_bluetooth_secs = 4; // Power management state machine option. See https://github.com/meshtastic/Meshtastic-device/blob/master/docs/software/power.md for details. 0 for default of 1 minute uint32 screen_on_secs = 5; // Power management state machine option. See https://github.com/meshtastic/Meshtastic-device/blob/master/docs/software/power.md for details. 0 for default of one minute