summaryrefslogtreecommitdiff
path: root/examples/host/midi2_host/Makefile
diff options
context:
space:
mode:
authorSaulo VerĂ­ssimo <[email protected]>2026-04-07 23:46:10 -0300
committerSaulo VerĂ­ssimo <[email protected]>2026-05-12 11:07:45 -0300
commitb4880761bcadbee86d047e0a3b329859926caad5 (patch)
tree3be71a7713aa1c51625249242cf13b41faef461c /examples/host/midi2_host/Makefile
parentc4847006dbb7565b71055837103ec788c4cb6fee (diff)
refactor: replace midi2_host (Waveshare) with midi2_host_feather
Remove the Waveshare RP2350-USB-A host example and board definition. The Feather RP2040 USB Host is the TinyUSB reference board for PIO-USB host and does not require the CFG_TUSB_DEBUG workaround needed by the Waveshare (R13 pull-up issue). One host example is sufficient for the PR. The Feather variant has an improved display with splash, spinner, and 6-line live view.
Diffstat (limited to 'examples/host/midi2_host/Makefile')
-rw-r--r--examples/host/midi2_host/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/host/midi2_host/Makefile b/examples/host/midi2_host/Makefile
deleted file mode 100644
index 2b4660516..000000000
--- a/examples/host/midi2_host/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# This example requires RP2040/RP2350 (PIO-USB, Pico SDK I2C, SSD1306 display)
-ifeq (,$(findstring rp2040,$(FAMILY)))
-$(info Skipping midi2_host: requires FAMILY=rp2040)
-all:
- @:
-.DEFAULT:
- @:
-else
-
-include ../../../hw/bsp/family_support.mk
-
-INC += \
- src \
-
-# Example source
-EXAMPLE_SOURCE += \
- src/main.c \
- src/display.c \
-
-SRC_C += $(addprefix $(EXAMPLE_PATH)/, $(EXAMPLE_SOURCE))
-
-# Suppress pre-existing warning
-CFLAGS_GCC += -Wno-type-limits
-
-include ../../../hw/bsp/family_rules.mk
-
-endif