Skip to content

Commit 5f6a3f4

Browse files
committed
Add new boards DPU ESP32 and Adafruit Feather ESP32-S2 TFT
Resolves platformio#742
1 parent 82d23a4 commit 5f6a3f4

File tree

2 files changed

+105
-0
lines changed

2 files changed

+105
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s2_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S2_TFT",
9+
"-DBOARD_HAS_PSRAM",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1"
11+
],
12+
"f_cpu": "240000000L",
13+
"f_flash": "80000000L",
14+
"flash_mode": "qio",
15+
"hwids": [
16+
[
17+
"0x239A",
18+
"0x810F"
19+
],
20+
[
21+
"0x239A",
22+
"0x010F"
23+
],
24+
[
25+
"0x239A",
26+
"0x8110"
27+
]
28+
],
29+
"mcu": "esp32s2",
30+
"variant": "adafruit_feather_esp32s2_tft"
31+
},
32+
"connectivity": [
33+
"wifi"
34+
],
35+
"debug": {
36+
"openocd_target": "esp32s2.cfg"
37+
},
38+
"frameworks": [
39+
"arduino",
40+
"espidf"
41+
],
42+
"name": "Adafruit Feather ESP32-S2 TFT",
43+
"upload": {
44+
"arduino": {
45+
"flash_extra_images": [
46+
[
47+
"0x2d0000",
48+
"variants/adafruit_feather_esp32s2_tft/tinyuf2.bin"
49+
]
50+
]
51+
},
52+
"flash_size": "4MB",
53+
"maximum_ram_size": 327680,
54+
"maximum_size": 4194304,
55+
"use_1200bps_touch": true,
56+
"wait_for_upload_port": true,
57+
"require_upload_port": true,
58+
"speed": 460800
59+
},
60+
"url": "https://www.adafruit.com/product/5300",
61+
"vendor": "Adafruit"
62+
}

boards/dpu_esp32.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32_out.ld",
5+
"partitions": "default_8MB.csv"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_DPU_ESP32",
10+
"-DBOARD_HAS_PSRAM",
11+
"-mfix-esp32-psram-cache-issue",
12+
"-mfix-esp32-psram-cache-strategy=memw"
13+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "40000000L",
16+
"flash_mode": "dio",
17+
"mcu": "esp32",
18+
"variant": "dpu_esp32"
19+
},
20+
"connectivity": [
21+
"wifi",
22+
"bluetooth",
23+
"ethernet",
24+
"can"
25+
],
26+
"debug": {
27+
"openocd_board": "esp32-wrover.cfg"
28+
},
29+
"frameworks": [
30+
"arduino",
31+
"espidf"
32+
],
33+
"name": "TAMC DPU ESP32",
34+
"upload": {
35+
"flash_size": "8MB",
36+
"maximum_ram_size": 327680,
37+
"maximum_size": 8388608,
38+
"require_upload_port": true,
39+
"speed": 460800
40+
},
41+
"url": "https://github.com/TAMCTec/dpu-esp32",
42+
"vendor": "TAMC"
43+
}

0 commit comments

Comments
 (0)