Skip to content

Commit 552a0b8

Browse files
authored
Add WEMOS LOLIN S3 Mini Pro board (#114)
* Add WEMOS LOLIN S3 Mini Pro board * Address comments and update S3 Mini --------- Co-authored-by: Sillyfrog <sillyfrog@users.noreply.github.com>
1 parent 608fc3b commit 552a0b8

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

boards/lolin_s3_mini.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"build": {
33
"arduino": {
4-
"ldscript": "esp32s3_out.ld",
54
"memory_type": "qio_qspi"
65
},
76
"core": "esp32",
87
"extra_flags": [
98
"-DBOARD_HAS_PSRAM",
109
"-DARDUINO_LOLIN_S3_MINI",
11-
"-DARDUINO_USB_MODE=1"
10+
"-DARDUINO_USB_CDC_ON_BOOT=1"
1211
],
1312
"f_cpu": "240000000L",
1413
"f_flash": "80000000L",
1514
"flash_mode": "qio",
15+
"psram_type" : "qio",
1616
"hwids": [
1717
[
1818
"0x303A",

boards/lolin_s3_mini_pro.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"memory_type": "qio_qspi"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DBOARD_HAS_PSRAM",
9+
"-DARDUINO_LOLIN_S3_MINI_PRO",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1"
11+
],
12+
"f_cpu": "240000000L",
13+
"f_flash": "80000000L",
14+
"flash_mode": "qio",
15+
"psram_type" : "qio",
16+
"hwids": [
17+
[
18+
"0x303A",
19+
"0x8167"
20+
]
21+
],
22+
"mcu": "esp32s3",
23+
"variant": "lolin_s3_mini_pro"
24+
},
25+
"connectivity": [
26+
"bluetooth",
27+
"wifi"
28+
],
29+
"debug": {
30+
"openocd_target": "esp32s3.cfg"
31+
},
32+
"frameworks": [
33+
"arduino",
34+
"espidf"
35+
],
36+
"name": "WEMOS LOLIN S3 Mini Pro",
37+
"upload": {
38+
"flash_size": "4MB",
39+
"maximum_ram_size": 327680,
40+
"maximum_size": 4194304,
41+
"require_upload_port": true,
42+
"speed": 460800
43+
},
44+
"url": "https://www.wemos.cc/en/latest/s3/index.html",
45+
"vendor": "WEMOS"
46+
}
47+

0 commit comments

Comments
 (0)