Merge pull request #3943 from wavexx/tml_decode
tml_decode: Fix two typos
This commit is contained in:
commit
b04b3f649b
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
""")
|
||||
|
|
|
|||
Loading…
Reference in New Issue