tml_decode: Fix two typos

This commit is contained in:
Yuri D'Elia 2023-01-23 21:06:51 +01:00
parent 53fb4c3e3f
commit b3245cb702
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: 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. 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(): def main():
ap = argparse.ArgumentParser(description='Decode (or plot) the TML trace contained in the serial LOG', ap = argparse.ArgumentParser(description='Decode (or plot) the TML trace contained in the serial LOG',
epilog=""" 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 Output the decoded trace to standard output by default. If --plot is provided, produce a
graph into IMG directly instead. graph into IMG directly instead.
""") """)