diff options
Diffstat (limited to 'decoders/spi')
-rw-r--r-- | decoders/spi/pd.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/decoders/spi/pd.py b/decoders/spi/pd.py index 7250dbd..5bab8f7 100644 --- a/decoders/spi/pd.py +++ b/decoders/spi/pd.py @@ -24,10 +24,10 @@ import sigrokdecode as srd ''' OUTPUT_PYTHON format: -SPI packet: -[<cmd>, <data1>, <data2>] +Packet: +[<ptype>, <data1>, <data2>] -Commands: +<ptype>: - 'DATA': <data1> contains the MISO data, <data2> contains the MOSI data. The data is _usually_ 8 bits (but can also be fewer or more bits). Both data items are Python numbers (not strings), or None if the respective |