Files
Linus Torvalds 0ba6767717 Remove "USB HOST" support
That code only existed as a UI for a device - and that UI no longer
exists and has been entirely replaced by the WebMIDI capability.

So remove the whole config option, and some of the actions that were
only relevant when the device was displaying remote data.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2026-07-24 16:04:18 -07:00

17 lines
293 B
Makefile

build:
cmake --build build --target blink
usb-device:
cmake -B build
cmake --build build --target blink
flash:
picotool load build/blink.elf && picotool reboot
prep:
git submodule init
git submodule update --init --recursive
cmake -DPICO_PLATFORM=rp2350 -S . -B build
.PHONY: build