File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -429,6 +429,19 @@ build_flags =
429
429
board_build.partitions = tinyuf2-partitions-8MB.csv
430
430
extra_scripts = pre:rename_usb_config.py
431
431
432
+ ; Seeed Studio ESP32 boards:
433
+
434
+ ; Xiao ESP32S3 N8R8 (SENSE)
435
+ [env:seeed-xiao_esp32s3_n8r8]
436
+ extends = common:esp32
437
+ board = seeed_xiao_esp32s3
438
+ build_flags = -DARDUINO_SEEED_XIAO_ESP32S3 -DUSE_TINYUSB -DBOARD_HAS_PSRAM -DARDUINO_USB_CDC_ON_BOOT =1 -DARDUINO_USB_MODE =0
439
+ board_build.partitions = tinyuf2-partitions-8MB.csv
440
+ extra_scripts = pre:rename_usb_config.py
441
+
442
+
443
+
444
+
432
445
; ESP8266 Boards
433
446
434
447
; Adafruit Feather HUZZAH ESP8266
Original file line number Diff line number Diff line change 199
199
#define USE_TINYUSB
200
200
#define USE_STATUS_LED
201
201
#define STATUS_LED_PIN LED_BUILTIN
202
+ #elif defined(ARDUINO_SEEED_XIAO_ESP32S3 )
203
+ #define BOARD_ID "seeed-xiao-esp32s3"
204
+ #define USE_TINYUSB
205
+ #define USE_STATUS_LED
206
+ #define STATUS_LED_PIN LED_BUILTIN
202
207
#else
203
208
#warning "Board type not identified within Wippersnapper_Boards.h!"
204
209
#endif
Original file line number Diff line number Diff line change 24
24
defined(ARDUINO_ADAFRUIT_QTPY_ESP32S3_NOPSRAM) || \
25
25
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S3) || \
26
26
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S3_TFT) || \
27
- defined(ARDUINO_ARCH_RP2040) || \
27
+ defined(ARDUINO_ARCH_RP2040) || defined(ARDUINO_SEEED_XIAO_ESP32S3) || \
28
28
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S3_REVTFT) || \
29
29
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S2_REVTFT) || \
30
30
defined(ARDUINO_ADAFRUIT_QTPY_ESP32S3_N4R2)
You can’t perform that action at this time.
0 commit comments