X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fddc.py;h=2336159d70f84d0f12d24addbf13f6db6604ef30;hb=9e681b1b7f7c1d6d4d56ad476647e21fd6f835c6;hp=395f72ff8bcb16643a205ae81c3de2379a3c1caf;hpb=a2d2aff27099449deb1a791b3adc05ee610861e6;p=libsigrokdecode.git diff --git a/decoders/ddc.py b/decoders/ddc.py index 395f72f..2336159 100644 --- a/decoders/ddc.py +++ b/decoders/ddc.py @@ -16,16 +16,13 @@ ## You should have received a copy of the GNU General Public License ## along with this program; if not, If not, see . ## +""" +This decoder extracts a DDC stream from an I2C session between a computer +and a display device. The stream is output as plain bytes. -# -# DDC protocol decoder -# -# This decoder extracts a DDC stream from an I2C session between a computer -# and a display device. The stream is output as plain bytes. -# -# Details: -# https://en.wikipedia.org/wiki/Display_Data_Channel -# +Details: +https://en.wikipedia.org/wiki/Display_Data_Channel +""" import sigrokdecode as srd @@ -35,8 +32,8 @@ class Decoder(srd.Decoder): longname = 'Display Data Channel' desc = 'A protocol for communication between computers and displays.' longdesc = '' - author = 'Bert Vermeulen ' - email = '' + author = 'Bert Vermeulen' + email = 'bert@biot.com' license = 'gplv3+' inputs = ['i2c'] outputs = ['ddc']