399c4341ed
- Set USB VID/PID via ESP32 core build flags (may work better than TinyUSB API) - Heartbeat on LED 9 (amber pulse every 2s) confirms device is alive - SysEx flashes ALL LEDs white for 200ms - Regular MIDI flashes LED 0 white for 50ms
28 lines
610 B
INI
28 lines
610 B
INI
; PlatformIO project configuration
|
|
; ESP32-S3 Loopy Pro Launchpad-Compatible Foot Controller
|
|
|
|
[env:esp32s3]
|
|
platform = espressif32
|
|
board = esp32-s3-devkitc-1
|
|
framework = arduino
|
|
lib_deps =
|
|
adafruit/Adafruit TinyUSB Library@3.1.0
|
|
fastled/FastLED@^3.9.0
|
|
|
|
build_unflags =
|
|
-DARDUINO_USB_MODE=1
|
|
|
|
build_flags =
|
|
-DARDUINO_USB_MODE=0
|
|
-DARDUINO_USB_CDC_ON_BOOT=1
|
|
-DUSE_TINYUSB=1
|
|
-DUSB_VID=0x1235
|
|
-DUSB_PID=0x0103
|
|
-DUSB_MANUFACTURER="Novation"
|
|
-DUSB_PRODUCT="Launchpad X"
|
|
|
|
monitor_speed = 115200
|
|
|
|
board_build.partitions = default_8MB.csv
|
|
board_build.arduino.memory_type = qio_opi
|