From 427a58f8c225fddcfcb3a930557b269b662e7c2a Mon Sep 17 00:00:00 2001 From: Foster Irwin Date: Thu, 27 May 2021 10:55:09 -0600 Subject: [PATCH] cli examples work in progress --- website/docs/software/settings/misc.md | 104 ++++++++++++++++++++++++- 1 file changed, 103 insertions(+), 1 deletion(-) diff --git a/website/docs/software/settings/misc.md b/website/docs/software/settings/misc.md index e23c2cfd..de1375dd 100644 --- a/website/docs/software/settings/misc.md +++ b/website/docs/software/settings/misc.md @@ -43,7 +43,7 @@ If set, this will disable the SerialConsole by not initilizing the StreamAPI. ## Examples -### Enable debug log +### debug_log_enabled + ```bash title="Example - Disable debug log" + meshtastic --set debug_log_enabled false ``` +:::note +`debug_log_enabled` set to `false` is the default behavior. +::: + ```bash title="Example - Enable debug log" meshtastic --set debug_log_enabled true ``` @@ -65,3 +71,99 @@ If set, this will disable the SerialConsole by not initilizing the StreamAPI. + +### factory_reset + + + + + ```bash title="Example - Factory reset" + meshtastic --set factory_reset true + ``` + + + + + TODO + + + + +### frequency_offset + + + + + TODO + + + + + TODO + + + + + +### ignore_incoming + + + + + TODO + + + + + TODO + + + + + +### serial_disabled + + + + + ```bash title="Example - Disable serial" + meshtastic --set disable_serial true + ``` + ```bash title="Example - Enable serial" + meshtastic --set disable_serial false + ``` +:::note +`disable_serial` set to `false` is the default behavior. +::: + + + + + TODO + + +