diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2011-12-07 02:03:25 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2011-12-07 02:03:25 +0100 |
commit | f44d2db2a027857bdfbfc18e40b9900cad1b0e1d (patch) | |
tree | 6dfc2c0de084f095d53af661cb54cf3a166b0584 /decoders/Makefile.am | |
parent | 6547acfda9913a8856e2c875dc3f340570d80583 (diff) | |
download | libsigrokdecode-f44d2db2a027857bdfbfc18e40b9900cad1b0e1d.tar.gz libsigrokdecode-f44d2db2a027857bdfbfc18e40b9900cad1b0e1d.zip |
srd: Add initial UART decoder.
Works with any baudrate, number of bits, parity types, number of stop
bits and so on, in theory. Not all options are fully implemented or
tested though. Various TODOs remain.
Diffstat (limited to 'decoders/Makefile.am')
-rw-r--r-- | decoders/Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/decoders/Makefile.am b/decoders/Makefile.am index 7b1c9a1..0aa1a7d 100644 --- a/decoders/Makefile.am +++ b/decoders/Makefile.am @@ -20,7 +20,14 @@ pkgdatadir = $(DECODERS_DIR) -dist_pkgdata_DATA = i2c.py nunchuk.py transitioncounter.py spi.py srd_usb.py +# Please keep this list in alphabetical order. +dist_pkgdata_DATA = \ + i2c.py \ + nunchuk.py \ + spi.py \ + srd_usb.py \ + transitioncounter.py \ + uart.py CLEANFILES = *.pyc |