X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fmidi%2Fpd.py;h=60bfd2ebc543de8e03baa124412d9391a0a80bf4;hp=feb581c6684522c8d87a7fc449310403332976b3;hb=e144452bcdd5f2abbe6b6f3da41ad64f67e39def;hpb=10aeb8ea8b183394cebc0033f048f49f4262b57d 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)),