]> sigrok.org Git - libsigrokdecode.git/commitdiff
uart: Fix code comment.
authorUwe Hermann <redacted>
Thu, 16 Oct 2014 15:58:28 +0000 (17:58 +0200)
committerUwe Hermann <redacted>
Thu, 16 Oct 2014 15:58:28 +0000 (17:58 +0200)
decoders/uart/pd.py

index c3422434050862027c7e23086df6650e1153feec..d59c6c33fb3fd5738fc84479ae32df99d7c9fd89 100644 (file)
@@ -28,9 +28,10 @@ Packet:
 
 This is the list of <ptype>s and their respective <pdata> values:
  - 'STARTBIT': The data is the (integer) value of the start bit (0/1).
- - ('DATA', 'DATABITS'): DATA is the (integer) value of the UART data. Valid
-   values range from 0 to 512 (as the data can be up to 9 bits in size).
-   'DATABITS' is the list of individual data bits and their ss/es numbers.
+ - 'DATA': This is always a tuple containing two items:
+   - 1st item: the (integer) value of the UART data. Valid values
+     range from 0 to 512 (as the data can be up to 9 bits in size).
+   - 2nd item: the list of individual data bits and their ss/es numbers.
  - 'PARITYBIT': The data is the (integer) value of the parity bit (0/1).
  - 'STOPBIT': The data is the (integer) value of the stop bit (0 or 1).
  - 'INVALID STARTBIT': The data is the (integer) value of the start bit (0/1).