remove unused param

This commit is contained in:
Kevin Hester 2020-12-21 10:21:34 +08:00
parent f1cd492529
commit 020ef9eea8
2 changed files with 2 additions and 3 deletions

View file

@ -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 |

View file

@ -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