diff options
author | sago35 <[email protected]> | 2022-06-27 23:24:48 +0900 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-07-12 19:13:12 +0200 |
commit | 8fed0638200c93b5193c8a2a6f92dba44f44f0b0 (patch) | |
tree | 67b3947ff67a8dae5d32868272b3327c634ea5a6 /Makefile | |
parent | 2f843af286f7301d99c5833457b6baaf9bba4b48 (diff) | |
download | tinygo-8fed0638200c93b5193c8a2a6f92dba44f44f0b0.tar.gz tinygo-8fed0638200c93b5193c8a2a6f92dba44f44f0b0.zip |
usb: add support for midi
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -595,11 +595,13 @@ endif @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=feather-m4 examples/pwm @$(MD5SUM) test.hex - # test usbhid + # test usb $(TINYGO) build -size short -o test.hex -target=feather-nrf52840 examples/hid-keyboard @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=circuitplay-express examples/hid-keyboard @$(MD5SUM) test.hex + $(TINYGO) build -size short -o test.hex -target=feather-nrf52840 examples/usb-midi + @$(MD5SUM) test.hex ifneq ($(STM32), 0) $(TINYGO) build -size short -o test.hex -target=bluepill examples/blinky1 @$(MD5SUM) test.hex |