diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-02-07 14:20:47 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-03-02 11:38:50 -0500 |
commit | 3c6eb376ac75b7820810f709f14d5d48257e1d45 (patch) | |
tree | 1e5387e8e12cc2ec76e7b03f681b40fe797e6a19 /docs | |
parent | 9d3a3f3f306af5f1fbd39e537e10392f03f5b27d (diff) | |
download | kutter-3c6eb376ac75b7820810f709f14d5d48257e1d45.tar.gz kutter-3c6eb376ac75b7820810f709f14d5d48257e1d45.tar.xz kutter-3c6eb376ac75b7820810f709f14d5d48257e1d45.zip |
console: Make baud an optional parameter
Make the baud rate an optional parameter to the console.py tool. When
not present, it will default to 250000.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Debugging.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/Debugging.md b/docs/Debugging.md index 4286a37a..6c19ce54 100644 --- a/docs/Debugging.md +++ b/docs/Debugging.md @@ -123,12 +123,15 @@ possible to manually send these MCU commands (functions marked with the DECL_COMMAND() macro in the Klipper source code). To do so, run: ``` -~/klippy-env/bin/python ./klippy/console.py /tmp/pseudoserial 250000 +~/klippy-env/bin/python ./klippy/console.py /tmp/pseudoserial ``` See the "HELP" command within the tool for more information on its functionality. +Some command-line options are available. For more information run: +`~/klippy-env/bin/python ./klippy/console.py --help` + Generating load graphs ====================== |