diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2019-03-16 18:46:01 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-03-16 18:46:01 +0100 |
commit | 2787cf2abc0187679e87d3735ca3e64c2a1a91c8 (patch) | |
tree | 8baddf2048d8383a257284eabd238f7f4397568f /decoders/avr_pdi | |
parent | 2b46b01c72c06683b3130647affe92c425d573b5 (diff) | |
download | libsigrokdecode-2787cf2abc0187679e87d3735ca3e64c2a1a91c8.tar.gz libsigrokdecode-2787cf2abc0187679e87d3735ca3e64c2a1a91c8.zip |
decoders: Various cosmetic/consistency/typo fixes.
Diffstat (limited to 'decoders/avr_pdi')
-rw-r--r-- | decoders/avr_pdi/__init__.py | 7 | ||||
-rw-r--r-- | decoders/avr_pdi/pd.py | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/decoders/avr_pdi/__init__.py b/decoders/avr_pdi/__init__.py index ebe647b..1c61dea 100644 --- a/decoders/avr_pdi/__init__.py +++ b/decoders/avr_pdi/__init__.py @@ -19,9 +19,10 @@ ''' PDI (Program and Debug Interface) is an Atmel proprietary interface for -external programming and on-chip debugging of the device. See the Atmel -Application Note AVR1612 "PDI programming driver" and the "Program and -Debug Interface" section in the Xmega A manual for details. +external programming and on-chip debugging of the device. + +See the Atmel Application Note AVR1612 "PDI programming driver" and the +"Program and Debug Interface" section in the Xmega A manual for details. The protocol uses two pins: the RESET pin and one dedicated DATA pin. The RESET pin provides a clock, the DATA pin communicates serial frames diff --git a/decoders/avr_pdi/pd.py b/decoders/avr_pdi/pd.py index 614eb4f..3a3ab6c 100644 --- a/decoders/avr_pdi/pd.py +++ b/decoders/avr_pdi/pd.py @@ -116,7 +116,7 @@ class Decoder(srd.Decoder): id = 'avr_pdi' name = 'AVR PDI' longname = 'Atmel Program and Debug Interface' - desc = 'Atmel proprietary interface for the ATxmega MCU.' + desc = 'Atmel ATxmega Program and Debug Interface (PDI) protocol.' license = 'gplv2+' inputs = ['logic'] outputs = ['pdi'] |