]> sigrok.org Git - libsigrokdecode.git/commitdiff
srd: Cosmetics.
authorUwe Hermann <redacted>
Tue, 12 Jun 2012 18:38:08 +0000 (20:38 +0200)
committerUwe Hermann <redacted>
Tue, 12 Jun 2012 18:40:39 +0000 (20:40 +0200)
decoders/edid/__init__.py
decoders/i2c/__init__.py
decoders/jtag/__init__.py
decoders/spi/__init__.py
decoders/uart/__init__.py
decoders/usb/__init__.py

index 9932a81a0ef7c8f41ca346aa21a2953cd5efe130..0987d1780ee6f7d7b82912529538564c704e7352 100644 (file)
@@ -25,7 +25,7 @@ The three-character vendor ID as specified in the EDID standard refers to
 a Plug and Play ID (PNPID). The list of PNPID assignments is done by Microsoft.
 More information is available on this page:
 
 http://msdn.microsoft.com/en-us/windows/hardware/gg463195
+ http://msdn.microsoft.com/en-us/windows/hardware/gg463195
 
 The 'pnpids.txt' file included with this protocol decoder is derived from
 the list of assignments downloadable from that page. It was retrieved in
@@ -33,7 +33,7 @@ January 2012.
 
 More information on EDID is available here:
 
 https://en.wikipedia.org/wiki/Extended_display_identification_data
+ https://en.wikipedia.org/wiki/Extended_display_identification_data
 '''
 
 from .edid import *
index 5216e01602a4498c031532ef71ffa6438b6f3e24..14262d18e9177a1f8860801e2b9d2df3199019c8 100644 (file)
@@ -62,15 +62,15 @@ I2C packet:
 [<cmd>, <data>]
 
 <cmd> is one of:
 - 'START' (START condition)
 - 'START REPEAT' (Repeated START condition)
 - 'ADDRESS READ' (Slave address, read)
 - 'ADDRESS WRITE' (Slave address, write)
 - 'DATA READ' (Data, read)
 - 'DATA WRITE' (Data, write)
 - 'STOP' (STOP condition)
 - 'ACK' (ACK bit)
 - 'NACK' (NACK bit)
+ - 'START' (START condition)
+ - 'START REPEAT' (Repeated START condition)
+ - 'ADDRESS READ' (Slave address, read)
+ - 'ADDRESS WRITE' (Slave address, write)
+ - 'DATA READ' (Data, read)
+ - 'DATA WRITE' (Data, write)
+ - 'STOP' (STOP condition)
+ - 'ACK' (ACK bit)
+ - 'NACK' (NACK bit)
 
 <data> is the data or address byte associated with the 'ADDRESS*' and 'DATA*'
 command. Slave addresses do not include bit 0 (the READ/WRITE indication bit).
index 79fc6c1462479aad1a63d404329e592c9d475da8..4a53502a48b794a0d9bf4f39f1eaec7c418a085e 100644 (file)
@@ -33,16 +33,16 @@ JTAG packet:
 [<packet-type>, <data>]
 
 <packet-type> is one of:
 - 'NEW STATE': <data> is the new state of the JTAG state machine.
-    Valid values: 'TEST-LOGIC-RESET', 'RUN-TEST/IDLE', 'SELECT-DR-SCAN',
-    'CAPTURE-DR', 'SHIFT-DR', 'EXIT1-DR', 'PAUSE-DR', 'EXIT2-DR', 'UPDATE-DR',
-    'SELECT-IR-SCAN', 'CAPTURE-IR', 'SHIFT-IR', 'EXIT1-IR', 'PAUSE-IR',
-    'EXIT2-IR', 'UPDATE-IR'.
 - 'IR TDI': Bitstring that was clocked into the IR register.
 - 'IR TDO': Bitstring that was clocked out of the IR register.
 - 'DR TDI': Bitstring that was clocked into the DR register.
 - 'DR TDO': Bitstring that was clocked out of the DR register.
 - ...
+ - 'NEW STATE': <data> is the new state of the JTAG state machine.
+   Valid values: 'TEST-LOGIC-RESET', 'RUN-TEST/IDLE', 'SELECT-DR-SCAN',
+   'CAPTURE-DR', 'SHIFT-DR', 'EXIT1-DR', 'PAUSE-DR', 'EXIT2-DR', 'UPDATE-DR',
+   'SELECT-IR-SCAN', 'CAPTURE-IR', 'SHIFT-IR', 'EXIT1-IR', 'PAUSE-IR',
+   'EXIT2-IR', 'UPDATE-IR'.
+ - 'IR TDI': Bitstring that was clocked into the IR register.
+ - 'IR TDO': Bitstring that was clocked out of the IR register.
+ - 'DR TDI': Bitstring that was clocked into the DR register.
+ - 'DR TDO': Bitstring that was clocked out of the DR register.
+ - ...
 
 All bitstrings are a sequence of '1' and '0' characters. The right-most
 character in the bitstring is the LSB. Example: '01110001' (1 is LSB).
index 8734acf3f36ebe57bb468351846ee2a5f97e884e..fedcc5fbbbd4af3bf33216411a54d8d349d90bb9 100644 (file)
@@ -36,11 +36,12 @@ Commands:
  - 'CS CHANGE': <data1> is the old CS# pin value, <data2> is the new value.
    Both data items are Python numbers (0/1), not strings.
 
-Example:
+Examples:
  ['CS-CHANGE', 1, 0]
  ['DATA', 0xff, 0x3a]
  ['DATA', 0x65, 0x00]
  ['CS-CHANGE', 0, 1]
+
 '''
 
 from .spi import *
index d41a964c3f6ecf30fcba479c35f1f068fdd52d83..ecba2e1ac04a03893354ee5c2292015488ddd050 100644 (file)
@@ -96,7 +96,7 @@ Protocol output format:
 UART packet:
 [<packet-type>, <rxtx>, <packet-data>]
 
-This is the list of <packet-types>s and their respective <packet-data>:
+This is the list of <packet-type>s and their respective <packet-data>:
  - 'STARTBIT': The data is the (integer) value of the start bit (0/1).
  - 'DATA': The 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).
index 77b58d11a509806fe6d280cb4fcaff70c512bad1..a7204dbe497e8712760433edac5aacb9194781e0 100644 (file)
@@ -35,6 +35,9 @@ transition. This is known as bit stuffing. Data is transferred at a rate
 of 12Mbit/s. The SE0 transmitted to signal an end-of-packet is two bit
 intervals long.
 
+Protocol output format:
+TODO
+
 Details:
 https://en.wikipedia.org/wiki/USB
 http://www.usb.org/developers/docs/