diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2019-11-29 19:51:36 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-11-29 19:53:32 +0100 |
commit | 77c986b311272b5298f86653639e7cec2e2c01fc (patch) | |
tree | 87de74381183ac20bc98b07efbf6e6c52e1f9814 | |
parent | d97440cc95fce11a7c925ef9decf6d11b1c4830d (diff) | |
download | libsigrokdecode-77c986b311272b5298f86653639e7cec2e2c01fc.tar.gz libsigrokdecode-77c986b311272b5298f86653639e7cec2e2c01fc.zip |
uart: Document the new 'IDLE' ptype for OUTPUT_PYTHON output.
-rw-r--r-- | decoders/uart/pd.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/decoders/uart/pd.py b/decoders/uart/pd.py index d38258b..1492aed 100644 --- a/decoders/uart/pd.py +++ b/decoders/uart/pd.py @@ -43,6 +43,7 @@ This is the list of <ptype>s and their respective <pdata> values: - 'FRAME': The data is always a tuple containing two items: The (integer) value of the UART data, and a boolean which reflects the validity of the UART frame. + - 'IDLE': The data is always 0. The <rxtx> field is 0 for RX packets, 1 for TX packets. ''' |