diff options
| author | Ha Thach <[email protected]> | 2026-06-29 12:56:16 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-06-29 12:56:16 +0700 |
| commit | 40f4c12c6be504031d2e2808f191134739206b5e (patch) | |
| tree | 6206237e2f08aed4d0570daa65bf88e45e7de8f8 /examples/device/midi_test | |
| parent | be22838b081ad90f6b312e1da6fc1b1653e3c5ae (diff) | |
| parent | ba32b46ebd5304812d521cd30cfdb5b284341f69 (diff) | |
Merge pull request #3743 from hathach/claude/build-doc-skill
docs: add build-doc tooling and a README for every example
Diffstat (limited to 'examples/device/midi_test')
| -rw-r--r-- | examples/device/midi_test/README.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/examples/device/midi_test/README.md b/examples/device/midi_test/README.md new file mode 100644 index 000000000..001d16bbd --- /dev/null +++ b/examples/device/midi_test/README.md @@ -0,0 +1,49 @@ +# MIDI Test + +A USB MIDI device that continuously plays a fixed melody, useful for verifying USB MIDI enumeration and streaming. + +## What it does + +- Sends a repeating sequence of note-on / note-off messages (cable 0, channel 1) about every 286 ms. +- Drains any incoming MIDI packets (read and discarded) so the host sender never blocks on a full input port. +- Blinks the board LED to indicate USB state (not mounted / mounted / suspended). + +## USB Descriptors + +| Interface | Class driver | +|-----------|--------------| +| 0–1 | MIDI (Audio Control + MIDI Streaming) | + +## Configuration + +Notable `tusb_config.h` settings: + +```c +#define CFG_TUD_MIDI 1 +#define CFG_TUD_MIDI_RX_BUFSIZE (TUD_OPT_HIGH_SPEED ? 512 : 64) +#define CFG_TUD_MIDI_TX_BUFSIZE (TUD_OPT_HIGH_SPEED ? 512 : 64) +``` + +## Building + +CMake: + +```bash +mkdir build && cd build +cmake -DBOARD=raspberry_pi_pico .. +cmake --build . +``` + +Make: + +```bash +make BOARD=raspberry_pi_pico all +``` + +## FreeRTOS variant + +A FreeRTOS build is in `examples/device/midi_test_freertos` — identical MIDI melody playback, with the device, MIDI, and LED-blink work split across FreeRTOS tasks. + +## Try it + +The device shows up as a MIDI port. On Linux, list ports with `aseqdump -l`, then watch the incoming stream with `aseqdump -p <client:port>` (you should see a steady run of note on/off events), or route the port into a synth such as FluidSynth/qsynth to hear the melody. |
