X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fmidi%2F__init__.py;h=4dbcf96d8f23915a97d170b2acabf6acf47d92a3;hb=92a06d0b6bbe173257d7c76ed2318f5b35f65637;hp=029cfc01d88b71cc6360712e08c7f07721e64450;hpb=17f5df4f9eb701d6e8203d2953a7c48d3dd55537;p=libsigrokdecode.git diff --git a/decoders/midi/__init__.py b/decoders/midi/__init__.py index 029cfc0..4dbcf96 100644 --- a/decoders/midi/__init__.py +++ b/decoders/midi/__init__.py @@ -19,12 +19,11 @@ ## ''' -MIDI protocol decoder. +This decoder stacks on top of the 'uart' PD and decodes the MIDI +(Musical Instrument Digital Interface) protocol. -The MIDI protocol is layered on top of the UART (async serial) protocol, -with a fixed baud rate of 31250 baud (+/- 1%) and 8n1 settings. Bytes are -sent LSB-first. +MIDI is layered on top of the UART (async serial) protocol, with a fixed +baud rate of 31250 baud (+/- 1%) and 8n1 settings. Bytes are sent LSB-first. ''' -from .pd import * - +from .pd import Decoder