Skip to content

Commit 84f6d42

Browse files
committed
Add Unexpected Maker boards
Resolves platformio#694
1 parent 91cb4f3 commit 84f6d42

File tree

4 files changed

+146
-3
lines changed

4 files changed

+146
-3
lines changed

boards/tinypico.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@
44
"ldscript": "esp32_out.ld"
55
},
66
"core": "esp32",
7-
"extra_flags": "-DARDUINO_TINYPICO -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue",
7+
"extra_flags": [
8+
"-DARDUINO_TINYPICO",
9+
"-DBOARD_HAS_PSRAM",
10+
"-mfix-esp32-psram-cache-issue",
11+
"-mfix-esp32-psram-cache-strategy=memw"
12+
],
813
"f_cpu": "240000000L",
914
"f_flash": "40000000L",
10-
"flash_mode": "qio",
15+
"flash_mode": "dio",
1116
"mcu": "esp32",
12-
"variant": "pico32"
17+
"variant": "um_tinypico"
1318
},
1419
"connectivity": [
1520
"wifi",

boards/um_feathers2.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s2_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_FEATHERS2",
9+
"-DBOARD_HAS_PSRAM",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1"
11+
],
12+
"f_cpu": "240000000L",
13+
"f_flash": "80000000L",
14+
"flash_mode": "dio",
15+
"hwids": [
16+
[
17+
"0x239A",
18+
"0x80AB"
19+
]
20+
],
21+
"mcu": "esp32s2",
22+
"variant": "um_feathers2"
23+
},
24+
"connectivity": [
25+
"wifi"
26+
],
27+
"debug": {
28+
"openocd_target": "esp32s2.cfg"
29+
},
30+
"frameworks": [
31+
"arduino",
32+
"espidf"
33+
],
34+
"name": "Unexpected Maker FeatherS2",
35+
"upload": {
36+
"flash_size": "16MB",
37+
"maximum_ram_size": 327680,
38+
"maximum_size": 16777216,
39+
"use_1200bps_touch": true,
40+
"wait_for_upload_port": true,
41+
"require_upload_port": true,
42+
"speed": 921600
43+
},
44+
"url": "https://feathers2.io",
45+
"vendor": "Unexpected Maker"
46+
}

boards/um_feathers2_neo.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s2_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_FEATHERS2NEO",
9+
"-DBOARD_HAS_PSRAM",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1"
11+
],
12+
"f_cpu": "240000000L",
13+
"f_flash": "80000000L",
14+
"flash_mode": "dio",
15+
"hwids": [
16+
[
17+
"0x303A",
18+
"0x80B4"
19+
]
20+
],
21+
"mcu": "esp32s2",
22+
"variant": "um_feathers2neo"
23+
},
24+
"connectivity": [
25+
"wifi"
26+
],
27+
"debug": {
28+
"openocd_target": "esp32s2.cfg"
29+
},
30+
"frameworks": [
31+
"arduino",
32+
"espidf"
33+
],
34+
"name": "Unexpected Maker FeatherS2 Neo",
35+
"upload": {
36+
"flash_size": "4MB",
37+
"maximum_ram_size": 327680,
38+
"maximum_size": 4194304,
39+
"use_1200bps_touch": true,
40+
"wait_for_upload_port": true,
41+
"require_upload_port": true,
42+
"speed": 921600
43+
},
44+
"url": "https://unexpectedmaker.com/feathers2-neo",
45+
"vendor": "Unexpected Maker"
46+
}

boards/um_tinys2.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s2_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_TINYS2",
9+
"-DBOARD_HAS_PSRAM",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1"
11+
],
12+
"f_cpu": "240000000L",
13+
"f_flash": "40000000L",
14+
"flash_mode": "dio",
15+
"hwids": [
16+
[
17+
"0x303A",
18+
"0x8001"
19+
]
20+
],
21+
"mcu": "esp32s2",
22+
"variant": "um_tinys2"
23+
},
24+
"connectivity": [
25+
"wifi"
26+
],
27+
"debug": {
28+
"openocd_target": "esp32s2.cfg"
29+
},
30+
"frameworks": [
31+
"arduino",
32+
"espidf"
33+
],
34+
"name": "Unexpected Maker TinyS2",
35+
"upload": {
36+
"flash_size": "4MB",
37+
"maximum_ram_size": 327680,
38+
"maximum_size": 4194304,
39+
"use_1200bps_touch": true,
40+
"wait_for_upload_port": true,
41+
"require_upload_port": true,
42+
"speed": 921600
43+
},
44+
"url": "https://tinys2.io",
45+
"vendor": "Unexpected Maker"
46+
}

0 commit comments

Comments
 (0)