38 KiB
Repeater CLI Commands
All commands are sent over USB serial (CDC-ACM). Commands sent remotely over the mesh (non-zero sender_timestamp) cannot access USB-only commands.
The Room Server role shares this CLI — the common commands (radio, region, password, advert, gps, etc.) plus
setperm/get aclall apply.
Sources:
helpers/CommonCLI.cpp— common commands shared by all rolesapp/RepeaterMesh.cpp— repeater-specific commands (setperm,get acl,region,discover.neighbors)app/RepeaterRegionCLI.cpp/app/RoomServerRegionCLI.cpp— theregionsub-CLIapp/RepeaterUplink.cpp—get/set uplink.*(ESP32 uplink builds only)app/RoomServerMesh.cpp— room-server-specific commands (room.post)
Commands are case-sensitive, matching Arduino MeshCore. Nothing is lower-cased before matching.
Request-tag prefix. If a command is longer than 4 characters and its third character is
|(e.g.a7|reboot), the first three characters are stripped before dispatch and echoed back at the start of the reply. This is how the phone app correlates replies with requests. It means a command whose third character is a literal|cannot be sent as-is.
System
| Command | Description |
|---|---|
ver |
Firmware version and build date |
board |
Board manufacturer name |
reboot |
Reboot immediately |
start dfu |
Reboot into UF2 bootloader for drag-and-drop firmware update |
start ota |
ESP32: start WiFi AP + HTTP OTA server. nRF52: reboot into BLE OTA DFU mode |
stop ota |
Stop WiFi OTA server (ESP32 only) |
clkreboot |
Set clock to a fixed reference time (15 May 2024 8:50pm UTC) then reboot |
powersaving |
Not implemented |
Clock
| Command | Description |
|---|---|
clock |
Display current UTC time |
clock sync |
Sync clock from the sender's timestamp (only advances, cannot go backwards). Arms the 7-day mesh-time-sync suppression window. |
time <unix_timestamp> |
Set RTC to a specific Unix timestamp (cannot go backwards). Arms the 7-day mesh-time-sync suppression window. |
Advertisement
| Command | Description |
|---|---|
advert |
Send a flood-routed self-advertisement (1500 ms delay) |
advert.zerohop |
Send a 0-hop (direct only) self-advertisement |
Neighbors
| Command | Description |
|---|---|
neighbors |
Display current neighbor list |
neighbor.remove <pubkey_hex> |
Remove a neighbor entry by its public key. A prefix is accepted — the hex is truncated to at most 32 bytes and matched at whatever length you give. Repeater only in effect: RoomServerMesh does not override removeNeighbor, so on a room server this replies OK and does nothing. |
discover.neighbors |
(repeater only) Broadcast a node discovery request to find nearby nodes. Takes no arguments — anything after it replies Err - discover.neighbors has no options. Not implemented on room servers. |
Security & Access Control
| Command | Description |
|---|---|
password <new_password> |
Set the admin password (max 15 characters) |
setperm <perms_hex> <pubkey_hex> |
Set ACL permissions for a node (app format: 2-char hex perms first) |
setperm <pubkey_hex> <perms_dec> |
Set ACL permissions for a node (Arduino format: pubkey first, decimal perms) |
get acl |
(USB only) List all ACL entries with permissions and public keys |
Password length: admin and guest passwords are capped at 15 characters (16-byte storage incl. NUL; same limit as Arduino MeshCore). The login-send path silently truncates anything longer, so a password >15 chars will never authenticate. Applies to
set guest.passwordas well.
allow.read.onlyis room-server only.RoomServerMesh.cppis its sole consumer;RepeaterMesh.cppnever reads it, so on a repeater the setting silently did nothing. The CLI now only exposes it onCONFIG_ZEPHCORE_ROLE_ROOM_SERVERbuilds — a deliberate divergence from Arduino MeshCore, whose shared CommonCLI offers the knob on every role. The pref itself is unchanged: it stays byte 114 of the on-flash prefs layout, identical to Arduino's, so existing prefs files are unaffected.
Guest access differs by role, matching Arduino MeshCore. On a repeater, an empty
guest.password(the default) means open guest access — a blank submitted password logs in asPERM_ACL_GUEST, which cannot run CLI commands or read the access list, so it gets login plus status/telemetry only. On a room server, an emptyguest.passworddisables guest login, so a room is never accidentally left open; to run an open room useset allow.read.only on, which grants read-only (PERM_ACL_GUEST), not post rights. Set a non-emptyguest.passwordto require one on either role.
Room Server
| Command | Description |
|---|---|
room.post <message> |
Post a message to the shared room as the server itself (system post). Pushed to clients like any other post. |
Region Filtering
Regions control which flood packets the repeater forwards. The region tree is hierarchical; the wildcard * region is the root.
| Command | Description |
|---|---|
region |
Export the current region map (indented text tree) |
region load |
Enter interactive region load mode. Paste indented region lines; send a blank line to commit |
region save |
Save the current region map to persistent storage |
region def <token> [...] |
Cursor-walk bulk region builder — define a hierarchy in one line (see below) |
region put <name> [<parent>] |
Create a region; default parent is the wildcard root. Flood is allowed by default (use region denyf to deny) |
region remove <name> |
Remove a region (must have no children) |
region get <name> |
Show a region's parent and flood-allow flag |
region home [<name>] |
Get (no arg) or set the home region |
region default [<name>|<null>] |
Get (no arg), set, or clear (<null>) the default flood scope. Originated floods (self-adverts, etc.) are scoped with this region's TransportKey. Auto-creates the region if it doesn't exist and persists immediately |
region allowf <name> |
Allow flood packets in a region (clears deny-flood flag) |
region denyf <name> |
Deny flood packets in a region (sets deny-flood flag) |
region list allowed |
List all regions that allow floods |
region list denied |
List all regions that deny floods |
Region load format: one region per line, indented with spaces to indicate depth. Append F after the name to mark flood-allowed (otherwise flood is denied by default).
region def format: space-separated tokens; a cursor starts at *. Each token is name (create child of cursor, advance cursor to it) or name|jump / name,jump (create child of cursor, then move cursor to the existing region jump). Does not auto-save — follow with region save. Reply is the updated region tree. Example — branched tree: region def west pnw or pdx|pnw wa sw-wa. Example — flat list: region def west|* pnw|* or|* pdx|*.
Statistics & Logging
| Command | Description |
|---|---|
clear stats |
Reset all statistics counters |
stats-core |
(USB only) Display core mesh statistics |
stats-radio |
(USB only) Display radio statistics |
stats-packets |
(USB only) Display packet statistics |
log start |
Enable packet logging to file |
log stop |
Disable packet logging |
log erase |
Erase the log file |
log |
(USB only) Dump the full log file to USB serial |
erase |
(USB only) Format the entire filesystem |
GPS
| Command | Description |
|---|---|
gps |
Show GPS status (on or off) |
gps on |
Enable GPS module |
gps off |
Disable GPS module |
gps setloc |
Update stored latitude/longitude from current GPS fix |
gps advert |
Show current location advertising policy |
gps advert none |
Do not include location in advertisements |
gps advert share |
Include live GPS location in advertisements |
gps advert prefs |
Include stored lat/lon from prefs in advertisements |
set gps duty <sec> |
GPS duty interval (standby seconds between fixes). 0 = always-on (continuous; streams fresh fixes, can download a full almanac). Floor 10s, cap 604800 (1 week). Persists to flash, applied live. |
set gps duty default |
Reset GPS duty to the role default (repeater/room 48h, companion 300s) |
set gps diag <0|1|on|off> |
Arm GPS module-configuration diagnostics (see below). Not persisted — clears on reboot |
GPS configuration diagnostics. At boot the firmware configures the GNSS module — constellations, AssistNow/EASY, minimum elevation, fix rate — and on modules driven over raw NMEA those commands are sent blind: nothing reads the module's reply, so a silently rejected configuration is indistinguishable from a working one. These two commands make that visible.
set gps diag 1 # arm it
gps off # power-cycle the module...
gps on # ...which re-runs configuration and records the result
get gps diag # read it back
Sample reply:
> diag=on cfg=uart age=910s rx=120 mod=URANUS5 sent=12/336B sys=G3/R4/E0/B3/?0
rx=NMEA sentences the driver has parsed. Check this first — it is the only field that cannot be misread. Non-zero means the module is alive, at the right baud, and talking, so anything still wrong is signal or antenna. Zero means nothing is arriving at all, and no antenna work will helpcfg=which path ran —uart(raw PMTK+PCAS+UBX),api(driver GNSS API),blind(neither available), ornever-runmod=module identification, from a CASIC$GPTXTversion reply or a u-blox$PUBXpoll response, orno-reply. Only an explicit software-version token is accepted as an identity — TXT sentences also carry warnings, and a warning reported as an identity is worse than no answersent=commands/bytes written to the module (UART path), orsys_ret=/rate_ret=return codes (API path)sys=tracked satellites per constellation from GSV talker IDs: GPS / GLONASS (R) / Galileo (E) / BeiDou / other. A constellation that stops reporting for 30 s decays to zero rather than showing a stale count
sys= totalling more than sats= in get gps is expected, not a discrepancy: GSV counts satellites tracked, GGA counts satellites used in the fix solution.
rx= first, then mod=. rx= is the only field that cannot be misread: non-zero means the module is alive, at the right baud and talking, so anything still wrong is signal or antenna; zero means nothing is arriving at all. mod= then tells you whether the module heard us — everything on this transport is written blind, so a module that hears nothing looks exactly like one that hears everything and ignores it. mod=no-reply with rx= climbing means the receive direction works but our transmit does not reach it: wiring or pin assignment, not configuration.
sent= proves transmission, not acceptance. Only sys= shows what the module actually did. A module still running its factory or previously saved configuration reports G non-zero with the rest at 0. Note B0 is expected on u-blox M8 (BeiDou is deliberately disabled — only three major constellations can run concurrently), and ?0 is normal outside Japan (QZSS is regional).
The generic-NMEA path sends three protocols — PMTK (MediaTek), PCAS (CASIC: Quectel L76K/L76KB, Air530Z) and UBX (u-blox) — because a WisBlock-style GPS slot can hold any of them and each family ignores what it does not understand. Related build option: CONFIG_ZEPHCORE_GPS_NAV_MODE sets the CASIC navigation dynamic model ($PCAS11), defaulting to stationary for repeaters and room servers and automotive otherwise. It is worth setting because that model is stored in the module and survives reflashing the host — a slot module that previously lived in another device can arrive stuck in an airborne model that quietly degrades fixes on a fixed site.
Caveats: the sys= tally needs CONFIG_ZEPHCORE_GPS_SAT_DIAG (default on for repeaters, off for companions to save RAM) — the reply says so when built without it. Only the raw-UART path is re-run on gps on; boards with a real GNSS driver (Air530Z, LC76G) keep reporting their boot-time result, because that path goes through modem_chat_run_script(), which is safe only at boot. On those boards E0 is also expected — the Air530Z driver supports GPS/GLONASS/BeiDou but not Galileo, and the firmware falls back automatically.
Sensor Settings
| Command | Description |
|---|---|
sensor list [<start_idx>] |
List custom sensor settings (paginated at 134 chars) |
sensor get <key> |
Get a custom sensor setting value by key |
sensor set <key> <value> |
Set a custom sensor setting value |
Radio (Temporary Override)
| Command | Description |
|---|---|
tempradio <freq>,<bw>,<sf>,<cr>,<timeout_mins> |
Apply temporary radio parameters; automatically reverts after timeout_mins. Constraints: freq 150–2500 MHz, bw 7–500 kHz, sf 5–12, cr 5–8. Saved prefs are never mutated — concurrent set commands and reboots both restore the real saved values. |
Repeater Uplink (ESP32 + CONFIG_ZEPHCORE_REPEATER_UPLINK)
These commands configure observer-style WiFi+MQTT packet reporting from repeater role.
All set uplink.* changes are saved immediately and only applied after reboot.
| Command | Description |
|---|---|
get uplink.status |
Uplink runtime state: enabled flag, WiFi state, MQTT state, reboot-required flag |
get uplink.enable |
Uplink enable flag (on/off) |
get uplink.wifi.ssid |
Configured WiFi SSID |
get uplink.mqtt.host |
Configured MQTT broker host |
get uplink.mqtt.port |
Configured MQTT broker port |
get uplink.mqtt.tls |
MQTT TLS mode (0/1) |
get uplink.mqtt.user |
Configured MQTT username |
get uplink.mqtt.iata |
Configured IATA/site code used in MQTT topic |
set uplink.enable <on|off> |
Enable or disable repeater uplink (reboot required) |
set uplink.wifi.ssid <ssid> |
Set WiFi SSID (reboot required) |
set uplink.wifi.psk <psk> |
Set WiFi password (reboot required) |
set uplink.mqtt.host <host> |
Set MQTT host (reboot required) |
set uplink.mqtt.port <port> |
Set MQTT port 1–65535 (reboot required) |
set uplink.mqtt.tls <0|1> |
Set MQTT TLS mode (reboot required) |
set uplink.mqtt.user <user> |
Set MQTT username (reboot required) |
set uplink.mqtt.password <pass> |
Set MQTT password (reboot required) |
set uplink.mqtt.iata <code> |
Set MQTT site code (reboot required) |
get — Read Configuration
| Command | Returns |
|---|---|
get name |
Node name |
get role |
Firmware role: repeater or room_server (companion builds report companion) |
get repeat |
Forwarding enabled: on or off |
get radio |
Radio params as freq,bw,sf,cr — the same comma-separated form set radio takes, so a reply can be edited and sent straight back |
get freq |
Frequency in MHz |
get freqerr |
Carrier frequency error measured on received packets: mean N Hz, min A, max B, K pkts. LR2021 only — other radios answer not available. Purely diagnostic; nothing acts on it. The mean only approximates this node's reference error once it is averaged over many different peers — their individual errors cancel, ours does not — so read K and the min/max spread before believing it: a tight spread over a handful of packets is one chatty neighbour, not a population. Small values are the expected answer and mean there is nothing to do; LoRa tolerates carrier error up to roughly a quarter of the bandwidth before sensitivity suffers, so at BW 62.5 kHz a few hundred Hz is noise. If it is kHz-scale the correction is board-dependent: XTAL parts have SetXoscCpTrim, but TCXO parts have no chip-side trim at all (DS §6.11.4: "If a TCXO is configured, this command has no effect"), leaving only a software offset to the programmed frequency. Values beyond ±200 kHz are discarded by the driver and warn once — the field is decoded from three GetLoraPacketStatus bytes that DS rev 2.1 does not document, so implausible readings are evidence the field is not real on that firmware rather than a genuine measurement. Reset by clear stats. |
get tx |
TX power in dBm |
get lat |
Stored latitude |
get lon |
Stored longitude |
get dutycycle |
Duty cycle as percentage (e.g. "50.0%") |
get af |
Raw airtime factor value |
get txdelay |
Adaptive TX delay status: contention estimate and flood delay factor |
get rxdelay |
(deprecated) Always returns "adaptive (rxdelay deprecated)" |
get direct.txdelay |
(deprecated) Always returns "adaptive (direct.txdelay deprecated)" |
get backoff.multiplier |
Per-dupe reactive backoff multiplier |
get flood.max |
Max flood retransmit hops |
get flood.max.unscoped |
Max retransmit hops for un-scoped floods |
get flood.max.advert |
Max retransmit hops for ADVERT floods |
get flood.advert.interval |
Flood advertisement interval in hours |
get advert.interval |
Local advertisement interval in minutes |
get allow.read.only |
(room server only) Whether read-only clients are allowed |
get guest.password |
Guest access password |
get owner.info |
Owner/contact info (pipes | display as newlines) |
get int.thresh |
Interference threshold |
get leds |
LED master switch: on or off |
get buzzer |
(room server only) Buzzer/vibration mode as <n> (<name>): 0 (silent), 1 (sound+vib), 2 (vibrate), 3 (sound). Compiled out on repeater builds (#ifndef ZEPHCORE_REPEATER) — a repeater answers unknown config: buzzer. |
get agc.reset.interval |
Removed — replies Removed - Automatic AGC reset is on. Periodic AGC recalibration was deleted (it reset the noise floor to its unseeded sentinel on every fire). Use set rxduty to cut RX current. |
get multi.acks |
Extra ACK transmit count (0 or 1) |
get path.hash.mode |
Path hashing algorithm: 0, 1, or 2 |
get loop.detect |
Loop detection level: off, minimal, moderate, or strict |
get radio.rxgain |
RX gain boost: on or off |
get radio.fem.rxgain |
External FEM's LNA in the RX path: on (through the LNA) or off (bypassed). Default on |
get rxduty |
RX duty cycle mode: 0 or 1 |
get display.rotate |
Panel 180-degree rotation: 0 or 1. Reports the live panel state, not the stored byte — the two differ only when a rotation was refused, which is the case worth seeing. Boards whose panel cannot rotate reply unsupported (panel cannot rotate) |
get input.rotate |
Joystick/D-pad axis swap: 0 or 1 |
get gps duty |
Now-effective GPS duty interval in seconds (always on (0) when continuous) |
get gps diag |
What the last GPS module-configuration attempt did — which path ran, bytes sent, and tracked satellites per constellation. See GPS configuration diagnostics in the GPS section for the field reference |
get meshtimesync |
Mesh time-sync state + live dry-run: on/off, eligible voter count, votes for/against, consensus skew and radius, would-be verdict (ok/in-band/step±N/abstain (reason)/hold (reason); a recent clock set — manual or GPS — shows as hold (suppressed), and a backward step a forward-only role would refuse is annotated (skipped: forward-only)), step counters, suppression countdown, and a per-sender evidence table (prefix hops count skew E, E = counted toward the verdict above). Entries that count print first, so a size-capped reply never hides the ones that explain the summary; if the table doesn't fully fit, a trailing +N more shows how many were left out. Sensing runs even while off, so this works as a dry-run before enabling. Over remote admin the reply is truncated to the packet size (summary always fits); the full table needs the USB CLI. |
get probe.interval |
Seconds between periodic radio measurements (noise-floor sample + CAD probe). 0 = CAD probing off |
get dc.restarts |
Duty-cycle re-arm counter — RxTimeout re-arms plus parked-RX watchdog recoveries, sharing one total. Read it as a rate: divide by uptime. A bare count is not interpretable, and the two sources it merges cost very differently. An RxTimeout re-arm is ~7 ms of deaf time (the Calibrate(ALL) gap in the driver's restart_rx) after which the chip returns to duty cycle immediately — packets, not power. A watchdog recovery means the chip sat parked in full RX for one to two watchdog periods (2·(preamble+8) symbols, floored at 250 ms) — power, not packets, since parked RX still receives. The counter cannot tell you which, so read the worst case. Measured normal: ~250/hr on a high site at SF8/BW 62.5 (one every ~14 s), where the worst case — every event a park — costs about 3.5% of the duty cycle's savings. Nothing to act on below roughly 2000/hr; above that the parked-RX share starts eating a meaningful fraction of the saving and it becomes worth splitting the counter to find out. A high rate means the preamble detector is tripping without a decodable packet following, which on an elevated site is usually distant marginal traffic rather than interference — cross-check get cad.stats, whose adaptive detPeak offset rises independently in a genuinely busy RF environment. Reset by clear stats. |
get cad |
Always on — ZephCore performs CAD/LBT unconditionally and has no enable knob. Kept as a boolean reply for Arduino MeshCore app compatibility; the real status lives in get cad.stats. |
get cad.stats |
Adaptive-CAD status: header (a auto on/off, o operating detPeak offset, pk absolute peak with family base, sp noise-floor RSSI burst quality as mean-spread-dB/zero-spread-% (plus (burst-count rN/bN/aN) on the local USB console, omitted over the air to protect the 161 B reply budget, where r is completed RSSI reads, b reads the chip refused as busy, and a bursts abandoned because of one — on a healthy radio b/a stay at 0, and a large a against a near-zero burst count is the signature of a sampler being refused rather than one losing the odd read) — a non-zero mean proves the 8 reads are independent however high the share climbs; only mean 0.0 with a high share indicts the sampler. See ADAPTIVE_CAD.md. bc busy cap), then a 3-rung window around the operating offset (* marks it) with probe/busy/fp/tp counts and false-positive rate — the three levels the knee controller reads. Probing runs even while cad.auto is off (dry-run), so this is the observation tool for picking a site-appropriate detPeak. See ADAPTIVE_CAD.md. Not available on SX127x boards (no hardware CAD). |
get extra.sf |
LR2021 side detectors: the extra spreading factors currently received alongside sf, comma-separated (bare, no > prefix), or No extra SF configured. Reflects the saved prefs, not what the chip accepted — if the set became invalid after an sf/bw change it is reported here but was refused at boot (a WRN line says so). |
get adc.multiplier |
Battery voltage ADC calibration multiplier |
get bootloader.ver |
Bootloader version string |
get public.key |
Node's public key as hex. Not USB-only — it is answerable over remote admin, matching Arduino MeshCore. A public key is broadcast in every advert, so there is nothing to gate. |
get prv.key |
(USB only) Node's private key as hex — the 128-char expanded form, the same one set prv.key takes |
set — Write Configuration
Changes are persisted immediately unless noted. Some require a reboot.
| Command | Constraints | Description |
|---|---|---|
set name <name> |
No [ ] \ : , ? * |
Set node name |
set repeat <on|off> |
Enable or disable packet forwarding | |
set radio <freq>,<bw>,<sf>,<cr> |
freq 150–2500, bw 7–500, sf 5–12, cr 5–8 | Comma-separated, not space-separated — spaces parse as a single argument and the command is rejected. Set radio params (reboot required) |
set freq <mhz> |
150–2500 (USB only) | Set frequency alone (reboot required) |
set tx <dbm> |
−9 to board max (default 30) | Set TX power |
set lat <latitude> |
Set stored latitude | |
set lon <longitude> |
Set stored longitude | |
set dutycycle <pct> |
1–100 | Set duty cycle percentage (converted to airtime factor internally) |
set af <value> |
float | Set raw airtime factor directly |
set txdelay <value> |
Accepted for prefs compatibility — ignored (txdelay is adaptive) | |
set rxdelay <value> |
Accepted for prefs compatibility — ignored (rxdelay is adaptive) | |
set direct.txdelay <value> |
Accepted for prefs compatibility — ignored (direct.txdelay is adaptive) | |
set backoff.multiplier <m> |
0.0–2.0 | Per-dupe reactive backoff multiplier (0 = disable reactive backoff) |
set flood.max <count> |
0–64 | Maximum flood retransmit hops |
set flood.max.unscoped <count> |
0–64 | Hop limit for un-scoped floods only (default 64 = same as flood.max); scoped/transport floods still use flood.max |
set flood.max.advert <count> |
0–64 | Hop limit for ADVERT floods only (default 8); curbs advert churn independent of flood.max |
set flood.advert.interval <hours> |
0 (off) or 3–168 |
How often the repeater floods its own advertisement. 0 disables periodic flood adverts. |
set advert.interval <mins> |
0 (off) or min–240 |
How often the repeater sends local (zero-hop) advertisements. 0 — the default — disables them. Stored halved (the pref holds minutes/2), so odd values round down. |
set allow.read.only <on|off> |
(room server only) Allow or deny read-only client connections | |
set guest.password <pwd> |
Set guest access password | |
set owner.info <text> |
Use | for newlines |
Owner/contact information |
set int.thresh <value> |
Interference detection threshold | |
set buzzer <0|1|2|3> |
or off / on / vibrate / sound |
(room server only) 0/off silent, 1/on sound + vibration, 2/vibrate vibration only, 3/sound sound only. Modes 2 and 3 need a vibration motor; without one the node replies Error: no vibration motor on this board - use 0 or 1. Applied live and persisted. Compiled out on repeater builds. |
set leds <on|off|1|0> |
default on | Master switch for every LED on the node, applied live and persisted: heartbeat, unread-message and LoRa TX-activity LEDs, plus the message and shutdown flashes. Works on every role, including headless repeaters where the TX LED is the only one that ever lights. Does not cover the display backlight, which is a separate UI brightness setting. |
set agc.reset.interval <ms> |
Accepted, ignored | Removed — replies Removed - Automatic AGC reset is on. The prefs byte is still read and written so the on-flash layout stays byte-exact, but nothing acts on it. |
set multi.acks <0|1> |
Enable extra ACK transmits | |
set path.hash.mode <mode> |
0, 1, or 2 | Path hashing algorithm |
set loop.detect <mode> |
off, minimal, moderate, strict |
Loop detection sensitivity |
set radio.rxgain <0|1|on|off> |
RX gain boost, applied live. Replies Error: unsupported on radios without RX boost (SX127x); the pref is still saved. |
|
set radio.fem.rxgain <0|1|on|off> |
default 1 | Routes receive through the external FEM's LNA (1) or around it via the FEM's bypass path (0), applied live. Sensitivity for battery life — 0 costs roughly 17 dB and saves the LNA's supply current. Transmit, and the driver's idle/sleep gating of the FEM, are unaffected either way. Supported only where the FEM's receive path is software-selectable and that select line is wired to the radio node as lna-bypass-gpios — today the three KCT8103L boards, heltec_t096, heltec_wireless_tracker_v2 and heltec_wifi_lora32_v43. Every other board reports Error: unsupported: heltec_wifi_lora32_v4's GC1109 has no receive-path select (its CPS is don't-care in RX, same as MeshCore); station_g2, gat562_30s, ikoka_nano_30dbm and promicro_sx1262 have only the DIO2/TXEN/RXEN transmit-receive switch; rak3401_1watt's SKY66122 is enabled by a standalone always-on regulator outside the radio node; and non-SX126x radios (LR1110, LR2021, SX127x) never implement it. The pref is still saved when unsupported. Do not expect the FEM's chip-enable to be the knob — deasserting antenna-enable-gpios in RX shuts the part down and takes the through path with it (~69 dB measured on a V4.3), which is what 1.17.2 did before this moved to lna-bypass-gpios. |
set rxduty <0|1|on|off> |
RX duty cycle mode (reboot required). Window timing auto-sized per SF/BW/preamble from the SX126x datasheet constraints (boot log line rxduty: shows the result). Zero-loss guarantee assumes senders on preamble-32 firmware (current MeshCore at SF≤8); legacy preamble-16 senders are only caught ~50% worst-phase — keep off until the local mesh has converted. Presets with 16-symbol preambles (SF≥9) fall back to continuous RX automatically. |
|
set display.rotate <0|1|on|off> |
default 0 | Rotate the display 180 degrees, for cases and upgrade kits that mount the screen upside down (e.g. the Meshnology N37E for the Wio Tracker L1). Applied live — the driver flips the panel's SEGMENT_MAP and COM_OUTPUT_SCAN, two bytes on the wire, and the next frame comes out rotated with no redraw and no per-frame cost. Only full-height SSD1306 and SH1106 panels support this (rak4631, gat562_30s, heltec_wifi_lora32_v4/v43, lilygo_t3s3, station_g2, wio_tracker_l1); every other panel replies Error: this panel cannot rotate and the pref is not saved, so a stored value can never disagree with what the screen shows. lilygo_timpulse_plus is excluded despite being an SSD1306: its 64x32 glass is windowed into a 128x64 controller at page-offset 4, and the COM-scan reversal flips the controller's whole range, which would move the image off the bonded region. E-paper (SSD16xx) is excluded on purpose: its driver accepts a 180-degree orientation but implements it by flipping the RAM entry mode only, which reverses byte order without reversing bit order inside each byte — it would report success and render wrong. |
set input.rotate <0|1|on|off> |
default 0 | Swap the joystick/D-pad axes — up/down and left/right — to match an upside-down mount. Applied live. Deliberately separate from display.rotate: a case can flip the screen without moving the stick, and boards whose panel cannot rotate can still need the axis swap. Works on every board with directional input, in both the joystick UI and the button UI (where it swaps page-prev/page-next). Non-directional keys, tap codes and long-press gestures are unaffected. |
set adc.multiplier <mult> |
0 (use board default) or 100–30000 |
Battery voltage ADC calibration multiplier, set directly. Rejects non-numeric input, NaN/inf and negatives. |
set adc.multiplier target <mv> |
3000–4400 mV | Calibrate against a voltage you measured with a multimeter: rescales the current multiplier so the ADC reads <mv>. Replies with the old and new multiplier plus the before/after reading. Error: no ADC reading on this board if the board has no battery ADC. |
set adc.multiplier full |
board must be fully charged | Same calibration, but against the board's battery-curve 100% point instead of a hand-measured value. Only meaningful on a full charge. |
set meshtimesync <on|off> |
default off | Mesh time sync: automatically correct this node's clock from the consensus of Ed25519-signed advert timestamps heard on the mesh. Steps at most ±1 h per step, one step per 6 h; abstains without a quorum (default 6) of tenured agreeing senders; never overrides a clock set in the last 7 days, whether from GPS (re-armed on every fix) or a manual set. See MESHTIMESYNC.md. |
set cad.auto <on|off> |
default on | Adaptive CAD: let the staircase controller move the operating detPeak offset based on probe statistics. On by default (repeaters and companions); at the default 15 s probe interval it responds to environment change in ~1–2 h. Turn off to observe/hand-tune via get cad.stats + set cad.offset. See ADAPTIVE_CAD.md. |
set cad.offset <n> |
−8 to 12, default 0 | Operating detPeak offset from the chip family's per-SF base (SX126x: SF+13; LR11xx/LR20xx: 56–68 table). Negative = more sensitive LBT (catches weaker signals, risks false busy), positive = less sensitive. Wide range so dense hilltops / quiet valleys can settle far from base. The per-family absolute clamp in the driver (SX126x 15–40, LR 48–90) is a firmware guardrail against a CAD that never/always fires, not a chip limit (cadDetPeak is a full uint8_t). Applied live; the auto staircase may move it later if cad.auto is on. |
set probe.interval <sec> |
0 (off) or 10–255, default 15 | Seconds between periodic radio measurements. ONE reading serves both: the noise-floor RSSI sample (median of 8) and the CAD calibration probe, which consumes that same reading rather than measuring separately — so this is also the noise-floor sampling rate, and it sets how often an idle repeater wakes. Default 15 s → ~1–2 h CAD staircase response; the floor EMA warms up over 8 samples (~2 min) and its unguarded bypass runs every 16th (~4 min). Longer = fewer wakes, slower to track a changing RF environment. 0 disables CAD probing entirely (also freezes auto adaptation); the floor sampler then falls back to its build-time default. |
set cad.busycap <pct> |
0 (off) or 10–90, default 25 | Airtime-protection cap: the max percentage of TX attempts the node will let CAD defer before the staircase backs off to a less sensitive detPeak — counting real traffic, not just false positives. On a congested hilltop most busy verdicts are distant traffic won on capture anyway, so deferring for all of it starves the node's own airtime. Self-targeting: a quiet node's busy rate never reaches the cap. Shown as bc: in get cad.stats. 0 disables the cap (pure knee-seeking). |
set cad.reset |
Clear the accumulated per-level CAD probe statistics (RAM only; also cleared automatically on any radio parameter change). | |
set extra.sf <sf> [sf] [sf] |
up to 3 SFs, 0/off clears |
LR2021 only (Error: unsupported elsewhere) — LoRa side detectors: demodulate up to three extra spreading factors concurrently with sf, on the same bandwidth, so one repeater can serve several SF communities. Which SF a packet arrived on is a chip-side readout, not a guess. Chip constraints, enforced in the driver and reported as Error: unsupported or invalid extra SF config: every extra SF must be greater than sf, all distinct, highest−lowest ≤ 4, and at BW ≥ 500 kHz at most 2 (only 1 when sf ≥ 10). Receive only, and the bridge it creates is one-way. TX always uses the single configured sf, and all detectors share one bandwidth, so this is multi-SF, not multi-channel. A node with sf 7 + extra.sf 8 hears SF8 traffic and does forward it — but the forward goes out at SF7, so traffic moves SF8 -> SF7 only and nothing comes back. An SF8 node's direct messages are delivered while its ACKs never arrive, so it retries to its limit every time; adverts and one-way flood traffic propagate fine. Because every extra SF must be greater than sf, the main SF is always the lowest in the set and TX always uses it — so the bridge direction is fixed at high-SF-in / low-SF-out and cannot be reversed. Two nodes back to back both point the same way; there is no configuration that carries SF7 -> SF8. Treat it as a collector for slower-SF stragglers, not as a link between two SF islands. Applied live and restored on every RX entry. Interaction with CAD: the chip's SF constraint for CAD is the inverse of the one for RX, so the driver switches side detectors off for each LBT CAD and back on when RX re-arms — two extra SPI commands per TX, no configuration required. Persisted; a set that no longer fits after an sf/bw change is refused at boot and logged. |
set prv.key <hex> |
128-char hex (64-byte expanded Ed25519 key) | Replace private key; derive new identity (reboot to apply). The length must be exact — fromHex rejects anything else with Error, bad key. get prv.key returns the same 128-char form. Not USB-gated. |
Notes
- USB-only commands —
get acl,get prv.key,set freq,log(dump),stats-packets,stats-radio,stats-core,erase— are blocked when the command arrives over the mesh (remote admin). These are the only ones gated onsender_timestamp == 0;get public.keyandset prv.keyare not among them. - Adaptive contention window —
txdelay,rxdelay, anddirect.txdelayare accepted and stored for Arduino prefs compatibility but have no effect. Useget txdelayto inspect the current adaptive state andset backoff.multiplierto tune reactive backoff. - Region load mode — after
region load, every line received is parsed as a region entry until a blank line is sent. The loaded map is only committed to the live region tree at that point; useregion saveto persist it. - Reboot delay —
start dfu,start ota(nRF52 BLE-DFU path only),reboot,clkrebootanderasedefer the reset by 2 seconds so the reply can be transmitted over LoRa first. On a companion the handler then keeps deferring in 20 ms steps until the BLE/USB transport has drained, up to a further 3 s grace. On ESP32start otastarts a WiFi AP + HTTP server and does not reboot.