summaryrefslogtreecommitdiff
path: root/examples/host/midi2_host/Makefile
diff options
context:
space:
mode:
authorSaulo VerĂ­ssimo <[email protected]>2026-05-16 13:00:30 -0300
committerSaulo VerĂ­ssimo <[email protected]>2026-05-16 13:00:30 -0300
commit3efac1b28c4174b0734ef106ce8496fa39657b47 (patch)
treea9539f697da64235a9fb660cb32789fefa736ff1 /examples/host/midi2_host/Makefile
parent43a72cb614e2fdd27788057a6f9e843d458f1ca5 (diff)
midi2: host example - simplify and rename to midi2_host
Drop Feather-specific scaffolding (SSD1306 display, font, PIO-USB pin override) and rename the directory to midi2_host. The example is now a single main.c + tusb_config.h pair following the midi_rx pattern, with a printf-only UMP decoder for Channel Voice messages. Build-tested on adafruit_feather_rp2040_usb_host, daisyseed (stm32h7), mimxrt1010_evk, stm32f407disco, raspberry_pi_pico2, b_u585i_iot2a, portenta_c33, stm32h503nucleo, stlinkv3mini, feather_stm32f405. Ref #3571
Diffstat (limited to 'examples/host/midi2_host/Makefile')
-rw-r--r--examples/host/midi2_host/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/host/midi2_host/Makefile b/examples/host/midi2_host/Makefile
new file mode 100644
index 000000000..f8292385e
--- /dev/null
+++ b/examples/host/midi2_host/Makefile
@@ -0,0 +1,13 @@
+include ../../../hw/bsp/family_support.mk
+
+INC += \
+ src \
+
+
+# Example source
+EXAMPLE_SOURCE += \
+ src/main.c
+
+SRC_C += $(addprefix $(EXAMPLE_PATH)/, $(EXAMPLE_SOURCE))
+
+include ../../../hw/bsp/family_rules.mk