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>
This commit is contained in:
sillyfrog
2025-02-12 21:32:50 +10:00
committed by GitHub
parent 608fc3b552
commit 552a0b8928
2 changed files with 49 additions and 2 deletions
+2 -2
View File
@@ -1,18 +1,18 @@
{
"build": {
"arduino": {
"ldscript": "esp32s3_out.ld",
"memory_type": "qio_qspi"
},
"core": "esp32",
"extra_flags": [
"-DBOARD_HAS_PSRAM",
"-DARDUINO_LOLIN_S3_MINI",
"-DARDUINO_USB_MODE=1"
"-DARDUINO_USB_CDC_ON_BOOT=1"
],
"f_cpu": "240000000L",
"f_flash": "80000000L",
"flash_mode": "qio",
"psram_type" : "qio",
"hwids": [
[
"0x303A",
+47
View File
@@ -0,0 +1,47 @@
{
"build": {
"arduino": {
"memory_type": "qio_qspi"
},
"core": "esp32",
"extra_flags": [
"-DBOARD_HAS_PSRAM",
"-DARDUINO_LOLIN_S3_MINI_PRO",
"-DARDUINO_USB_CDC_ON_BOOT=1"
],
"f_cpu": "240000000L",
"f_flash": "80000000L",
"flash_mode": "qio",
"psram_type" : "qio",
"hwids": [
[
"0x303A",
"0x8167"
]
],
"mcu": "esp32s3",
"variant": "lolin_s3_mini_pro"
},
"connectivity": [
"bluetooth",
"wifi"
],
"debug": {
"openocd_target": "esp32s3.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "WEMOS LOLIN S3 Mini Pro",
"upload": {
"flash_size": "4MB",
"maximum_ram_size": 327680,
"maximum_size": 4194304,
"require_upload_port": true,
"speed": 460800
},
"url": "https://www.wemos.cc/en/latest/s3/index.html",
"vendor": "WEMOS"
}