Skip to content

Commit

Permalink
Merge branch 'platformio:develop' into feat/seeed_xiao_esp32c6.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaskatayama authored Dec 4, 2024
2 parents 91ed04a + c6a8c9a commit 5431f0f
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 3 deletions.
6 changes: 4 additions & 2 deletions boards/adafruit_feather_esp32s3_tft.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
"build": {
"arduino": {
"ldscript": "esp32s3_out.ld",
"partitions": "partitions-4MB-tinyuf2.csv"
"partitions": "partitions-4MB-tinyuf2.csv",
"memory_type": "qio_qspi"
},
"core": "esp32",
"extra_flags": [
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S3_TFT",
"-DARDUINO_USB_CDC_ON_BOOT=1",
"-DARDUINO_RUNNING_CORE=1",
"-DARDUINO_EVENT_RUNNING_CORE=1"
"-DARDUINO_EVENT_RUNNING_CORE=1",
"-DBOARD_HAS_PSRAM"
],
"f_cpu": "240000000L",
"f_flash": "80000000L",
Expand Down
42 changes: 42 additions & 0 deletions boards/freenove_esp32_wrover.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"build": {
"arduino": {
"ldscript": "esp32_out.ld"
},
"core": "esp32",
"extra_flags": [
"-DARDUINO_ESP32_DEV",
"-DBOARD_HAS_PSRAM",
"-mfix-esp32-psram-cache-issue",
"-mfix-esp32-psram-cache-strategy=memw"
],
"f_cpu": "240000000L",
"f_flash": "40000000L",
"flash_mode": "dio",
"mcu": "esp32",
"variant": "esp32"
},
"connectivity": [
"wifi",
"bluetooth",
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wrover-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "Freenove ESP32-Wrover",
"upload": {
"flash_size": "4MB",
"maximum_ram_size": 327680,
"maximum_size": 4194304,
"require_upload_port": true,
"speed": 460800
},
"url": "https://store.freenove.com/products/fnk0060",
"vendor": "Freenove"
}
2 changes: 1 addition & 1 deletion boards/heltec_wireless_stick_lite.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"core": "esp32",
"extra_flags": "-DARDUINO_HELTEC_WIRELESS_STICK_LITE",
"f_cpu": "240000000L",
"f_flash": "40000000L",
"f_flash": "80000000L",
"flash_mode": "dio",
"mcu": "esp32",
"variant": "heltec_wireless_stick_lite"
Expand Down
52 changes: 52 additions & 0 deletions boards/rymcu-esp32-s3-devkitc-1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"build": {
"arduino":{
"ldscript": "esp32s3_out.ld",
"partitions": "default_8MB.csv"
},
"core": "esp32",
"extra_flags": [
"-DARDUINO_ESP32S3_DEV",
"-DARDUINO_USB_MODE=1",
"-DARDUINO_RUNNING_CORE=1",
"-DARDUINO_EVENT_RUNNING_CORE=1",
"-DBOARD_HAS_PSRAM"
],
"f_cpu": "240000000L",
"f_flash": "80000000L",
"flash_mode": "qio",
"hwids": [
[
"0x303A",
"0x1001"
]
],
"mcu": "esp32s3",
"variant": "esp32s3"
},
"connectivity": [
"bluetooth",
"wifi"
],
"debug": {
"default_tool": "esp-builtin",
"onboard_tools": [
"esp-builtin"
],
"openocd_target": "esp32s3.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "RYMCU ESP32-S3-DevKitC-1-N8R2 (8 MB QD, 2 MB PSRAM)",
"upload": {
"flash_size": "8MB",
"maximum_ram_size": 327680,
"maximum_size": 8388608,
"require_upload_port": true,
"speed": 460800
},
"url": "https://rymcu.com/products",
"vendor": "RYMCU"
}

0 comments on commit 5431f0f

Please sign in to comment.