X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fmidi%2Fpd.py;h=60bfd2ebc543de8e03baa124412d9391a0a80bf4;hb=53cbedf5852028f54891066b0a5e698c4dd0c42a;hp=feb581c6684522c8d87a7fc449310403332976b3;hpb=10aeb8ea8b183394cebc0033f048f49f4262b57d;p=libsigrokdecode.git diff --git a/decoders/midi/pd.py b/decoders/midi/pd.py index feb581c..60bfd2e 100644 --- a/decoders/midi/pd.py +++ b/decoders/midi/pd.py @@ -32,11 +32,12 @@ class Decoder(srd.Decoder): desc = 'Musical Instrument Digital Interface (MIDI) protocol.' license = 'gplv2+' inputs = ['uart'] - outputs = ['midi'] + outputs = [] + tags = ['Audio', 'PC'] annotations = ( - ('text-verbose', 'Human-readable text (verbose)'), - ('text-sysreal-verbose', 'Human-readable SysReal text (verbose)'), - ('text-error', 'Human-readable Error text'), + ('text-verbose', 'Text (verbose)'), + ('text-sysreal-verbose', 'SysReal text (verbose)'), + ('text-error', 'Error text'), ) annotation_rows = ( ('normal', 'Normal', (0, 2)),