You've already forked ivan-torvalds-GuitarPedal
forked from AllSpiceMirrors/torvalds-GuitarPedal
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>
17 lines
293 B
Makefile
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
|