diff --git a/docs/settings/config/device.mdx b/docs/settings/config/device.mdx index e1e85441..89656957 100644 --- a/docs/settings/config/device.mdx +++ b/docs/settings/config/device.mdx @@ -7,7 +7,7 @@ sidebar_label: Device import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -The device config options are: Role, Serial Output, Debug Log, NTP Server and Factory Reset. Device config uses an admin message sending a `Config.Device` protobuf. +The device config options are: Role, Serial Output, and Debug Log. Device config uses an admin message sending a `Config.Device` protobuf. ## Device Config Values @@ -18,10 +18,10 @@ Acceptable values: | Value | Description | | :-------: | :---------------------------------------------------------------------------------------: | -| `Client` | Client (default) - App connected client. | -| `ClientMute` | Client Mute - Same as a client except packets will not hop over this node, does not contribute to routing packets for mesh. | -| `Router` | Router - Mesh packets will prefer to be routed over this node. This node will not be used by client apps. The wifi/ble radios and the oled screen will be put to sleep. | -| `RouterClient` | Router Client - Mesh packets will prefer to be routed over this node. The Router Client can be used as both a Router and an app connected Client. | +| `CLIENT` | Client (default) - App connected client. | +| `CLIENT_MUTE` | Client Mute - Same as a client except packets will not hop over this node, does not contribute to routing packets for mesh. | +| `ROUTER` | Router - Mesh packets will prefer to be routed over this node. This node will not be used by client apps. The wifi/ble radios and the oled screen will be put to sleep. | +| `ROUTER_CLIENT` | Router Client - Mesh packets will prefer to be routed over this node. The Router Client can be used as both a Router and an app connected Client. | ### Serial Console @@ -34,11 +34,6 @@ Acceptable values: `true` or `false` By default we turn off logging as soon as an API client connects Set this to true to leave the debug log outputting even when API is active. -### NTP Server -Acceptable value: `string` - -NTP server to use if WiFi is conneced, defaults to `0.pool.ntp.org` - ## Device Config Client Availability diff --git a/docs/settings/config/user.mdx b/docs/settings/config/user.mdx index 4bca4be5..3d7def12 100644 --- a/docs/settings/config/user.mdx +++ b/docs/settings/config/user.mdx @@ -67,14 +67,21 @@ values={[ All User config options are available in the python CLI. Example commands are below: -| Setting | Acceptable Values | Default | -| :-----------: | :---------------: | :-----: | -| LongName | string | auto-generated | -| ShortName | string | auto-generated | -| IsLicensed | bool | `false` | - Please see instructions for [Enabling HAM License](/docs/software/python/python-uses#ham-radio-support) +```shell title="Set the LongName Value" +meshtastic --set-owner 'your node name' +``` + +```shell title="Set the ShortName Value" +meshtastic --set-owner-short 'NODE' +``` + +```shell title="Enable Ham Mode, set name to license, disable encryption" +meshtastic --set-ham 'CALLSIGN' +``` + +