Skip to content

Commit a886fdc

Browse files
authored
Add Adafruit QT Py ESP32-S3 (PSRAM version) (#1257)
Resolves #1181
1 parent c266d1f commit a886fdc

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s3_out.ld",
5+
"partitions": "partitions-4MB-tinyuf2.csv"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_ADAFRUIT_QTPY_ESP32S3_N4R2",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1",
11+
"-DARDUINO_RUNNING_CORE=1",
12+
"-DARDUINO_EVENT_RUNNING_CORE=1",
13+
"-DBOARD_HAS_PSRAM"
14+
],
15+
"f_cpu": "240000000L",
16+
"f_flash": "80000000L",
17+
"flash_mode": "qio",
18+
"hwids": [
19+
[
20+
"0x239A",
21+
"0x8143"
22+
],
23+
[
24+
"0x239A",
25+
"0x0143"
26+
],
27+
[
28+
"0x239A",
29+
"0x8144"
30+
]
31+
],
32+
"mcu": "esp32s3",
33+
"variant": "adafruit_qtpy_esp32s3_n4r2"
34+
},
35+
"connectivity": [
36+
"bluetooth",
37+
"wifi"
38+
],
39+
"debug": {
40+
"openocd_target": "esp32s3.cfg"
41+
},
42+
"frameworks": [
43+
"arduino",
44+
"espidf"
45+
],
46+
"name": "Adafruit QT Py ESP32-S3 (4M Flash 2M PSRAM)",
47+
"upload": {
48+
"arduino": {
49+
"flash_extra_images": [
50+
[
51+
"0x2d0000",
52+
"variants/adafruit_qtpy_esp32s3_n4r2/tinyuf2.bin"
53+
]
54+
]
55+
},
56+
"flash_size": "4MB",
57+
"maximum_ram_size": 327680,
58+
"maximum_size": 4194304,
59+
"use_1200bps_touch": true,
60+
"wait_for_upload_port": true,
61+
"require_upload_port": true,
62+
"speed": 460800
63+
},
64+
"url": "https://www.adafruit.com/product/5700",
65+
"vendor": "Adafruit"
66+
}

examples/arduino-blink/platformio.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,8 @@ monitor_speed = 115200
4444
platform = espressif32
4545
framework = arduino
4646
board = arduino_nano_esp32
47+
48+
[env:adafruit_qtpy_esp32s3_n4r2]
49+
platform = espressif32
50+
board = adafruit_qtpy_esp32s3_n4r2
51+
framework = arduino

0 commit comments

Comments
 (0)