Skip to content

Commit

Permalink
remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
geeksville committed Dec 21, 2020
1 parent f1cd492 commit 020ef9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion docs/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 020ef9e

Please sign in to comment.