X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fddc.py;h=53244c3e0aa84dcb8e2dd0d83367fb86325b2b9d;hp=395f72ff8bcb16643a205ae81c3de2379a3c1caf;hb=9e587cc9d4db0da9bdfffbc023d848dd59df74b4;hpb=a2d2aff27099449deb1a791b3adc05ee610861e6 diff --git a/decoders/ddc.py b/decoders/ddc.py index 395f72f..53244c3 100644 --- a/decoders/ddc.py +++ b/decoders/ddc.py @@ -17,15 +17,13 @@ ## along with this program; if not, If not, see . ## -# -# 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 -# +''' +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 +''' import sigrokdecode as srd @@ -35,8 +33,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']