Merge pull request #3943 from wavexx/tml_decode

tml_decode: Fix two typos
This commit is contained in:
3d-gussner 2023-01-24 07:52:57 +01:00 committed by GitHub
commit b04b3f649b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ The parser is not strict, and will consume most serial logs with/without timesta
By default the decoded trace is written to the standard output as a tab-separated table. If `--plot` is used, produce a graph into the requested output file instead:
./tml_decode -o graph.png serial.log
./tml_decode -p graph.png serial.log
When plotting the [Matplotlib](https://matplotlib.org/) module is required.

View File

@ -75,7 +75,7 @@ def plot_therm_dump(data, output, title):
def main():
ap = argparse.ArgumentParser(description='Decode (or plot) the TML trace contained in the serial LOG',
epilog="""
The TML trace needs to be enabled by issuing "M155 S1 C3" and "D70 S1" to the printer. By
The TML trace needs to be enabled by issuing "M155 S1 C3" and "D70 S1" to the printer.
Output the decoded trace to standard output by default. If --plot is provided, produce a
graph into IMG directly instead.
""")