diff options
author | Nick Brassel <nick@tzarc.org> | 2021-11-05 08:55:55 +1100 |
---|---|---|
committer | Nick Brassel <nick@tzarc.org> | 2021-11-05 08:55:55 +1100 |
commit | 92e9bbd9b9c83553f5c9060cbcdb5c44e9eddb79 (patch) | |
tree | 2ccfc6ff2317d94d02e2a3f25db0ec383de32032 /docs | |
parent | 84ea77ead663624a6d8ae451ca3d4318008d9d41 (diff) | |
parent | c8da63382c7d2cc0de13559c10b5fde0f436f9e3 (diff) |
Merge remote-tracking branch 'upstream/master' into develop
Diffstat (limited to 'docs')
-rw-r--r-- | docs/cli_commands.md | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/docs/cli_commands.md b/docs/cli_commands.md index 9113e3b025..520da06c41 100644 --- a/docs/cli_commands.md +++ b/docs/cli_commands.md @@ -118,6 +118,68 @@ This command lets you configure the behavior of QMK. For the full `qmk config` d qmk config [-ro] [config_token1] [config_token2] [...] [config_tokenN] ``` +## `qmk cd` + +This command opens a new shell in your `qmk_firmware` directory. + +Note that if you are already somewhere within `QMK_HOME` (for example, the `keyboards/` folder), nothing will happen. + +To exit out into the parent shell, simply type `exit`. + +**Usage**: + +``` +qmk cd +``` + +## `qmk console` + +This command lets you connect to keyboard consoles to get debugging messages. It only works if your keyboard firmware has been compiled with `CONSOLE_ENABLE=yes`. + +**Usage**: + +``` +qmk console [-d <pid>:<vid>[:<index>]] [-l] [-n] [-t] [-w <seconds>] +``` + +**Examples**: + +Connect to all available keyboards and show their console messages: + +``` +qmk console +``` + +List all devices: + +``` +qmk console -l +``` + +Show only messages from clueboard/66/rev3 keyboards: + +``` +qmk console -d C1ED:2370 +``` + +Show only messages from the second clueboard/66/rev3: + +``` +qmk console -d C1ED:2370:2 +``` + +Show timestamps and VID:PID instead of names: + +``` +qmk console -n -t +``` + +Disable bootloader messages: + +``` +qmk console --no-bootloaders +``` + ## `qmk doctor` This command examines your environment and alerts you to potential build or flash problems. It can fix many of them if you want it to. |