forked from platformio/platform-espressif32
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
608 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"build": { | ||
"arduino": { | ||
"ldscript": "esp32s3_out.ld", | ||
"memory_type": "qio_opi", | ||
"partitions": "default_16MB.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DARDUINO_ESP32_S3R8N16", | ||
"-DBOARD_HAS_PSRAM", | ||
"-DARDUINO_USB_MODE=1", | ||
"-DARDUINO_USB_CDC_ON_BOOT=1", | ||
"-DARDUINO_RUNNING_CORE=1", | ||
"-DARDUINO_EVENT_RUNNING_CORE=1" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"hwids": [ | ||
[ | ||
"0x303A", | ||
"0x1001" | ||
] | ||
], | ||
"mcu": "esp32s3", | ||
"variant": "esp32_s3r8n16" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "4D Systems GEN4-ESP32 16MB (ESP32S3-R8N16)", | ||
"upload": { | ||
"flash_size": "16MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 16777216, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://4dsystems.com.au/products", | ||
"vendor": "4D Systems" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "esp32s3_out.ld", | ||
"partitions": "partitions-4MB-1ota.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DARDUINO_ADAFRUIT_CAMERA_ESP32S3", | ||
"-DARDUINO_USB_CDC_ON_BOOT=1", | ||
"-DARDUINO_RUNNING_CORE=1", | ||
"-DARDUINO_EVENT_RUNNING_CORE=1", | ||
"-DBOARD_HAS_PSRAM" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"hwids": [ | ||
[ | ||
"0x239A", | ||
"0x0117" | ||
], | ||
[ | ||
"0x239A", | ||
"0x8117" | ||
], | ||
[ | ||
"0x239A", | ||
"0x8118" | ||
] | ||
], | ||
"mcu": "esp32s3", | ||
"variant": "adafruit_camera_esp32s3" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "Adafruit pyCamera S3", | ||
"upload": { | ||
"arduino": { | ||
"flash_extra_images": [ | ||
[ | ||
"0x2d0000", | ||
"variants/adafruit_camera_esp32s3/tinyuf2.bin" | ||
] | ||
] | ||
}, | ||
"flash_size": "4MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 4194304, | ||
"use_1200bps_touch": true, | ||
"wait_for_upload_port": true, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://www.adafruit.com/", | ||
"vendor": "Adafruit" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
"variant": "adafruit_feather_esp32s3" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ | |
"variant": "adafruit_feather_esp32s3_tft" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
"variant": "adafruit_matrixportal_esp32s3" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "esp32s3_out.ld", | ||
"memory_type": "qio_opi", | ||
"partitions": "partitions-16MB-tinyuf2.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DARDUINO_METRO_ESP32S3", | ||
"-DARDUINO_USB_CDC_ON_BOOT=1", | ||
"-DARDUINO_RUNNING_CORE=1", | ||
"-DARDUINO_EVENT_RUNNING_CORE=1", | ||
"-DBOARD_HAS_PSRAM" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"hwids": [ | ||
[ | ||
"0x239A", | ||
"0x8145" | ||
], | ||
[ | ||
"0x239A", | ||
"0x0145" | ||
], | ||
[ | ||
"0x239A", | ||
"0x8146" | ||
] | ||
], | ||
"mcu": "esp32s3", | ||
"variant": "adafruit_metro_esp32s3" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "Adafruit Metro ESP32-S3", | ||
"upload": { | ||
"arduino": { | ||
"flash_extra_images": [ | ||
[ | ||
"0x410000", | ||
"variants/adafruit_metro_esp32s3/tinyuf2.bin" | ||
] | ||
] | ||
}, | ||
"flash_size": "16MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 16777216, | ||
"use_1200bps_touch": true, | ||
"wait_for_upload_port": true, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://www.adafruit.com/product/5500", | ||
"vendor": "Adafruit" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ | |
"variant": "adafruit_qtpy_esp32s3_nopsram" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "esp32s3_out.ld", | ||
"memory_type": "qio_opi", | ||
"partitions": "partitions-16MB-tinyuf2.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DARDUINO_QUALIA_S3_RGB666", | ||
"-DARDUINO_USB_CDC_ON_BOOT=1", | ||
"-DARDUINO_RUNNING_CORE=1", | ||
"-DARDUINO_EVENT_RUNNING_CORE=1", | ||
"-DBOARD_HAS_PSRAM" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"hwids": [ | ||
[ | ||
"0x239A", | ||
"0x8147" | ||
], | ||
[ | ||
"0x239A", | ||
"0x0147" | ||
], | ||
[ | ||
"0x239A", | ||
"0x8148" | ||
] | ||
], | ||
"mcu": "esp32s3", | ||
"variant": "adafruit_qualia_s3_rgb666" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "Adafruit Qualia ESP32-S3 RGB666", | ||
"upload": { | ||
"arduino": { | ||
"flash_extra_images": [ | ||
[ | ||
"0x410000", | ||
"variants/adafruit_qualia_s3_rgb666/tinyuf2.bin" | ||
] | ||
] | ||
}, | ||
"flash_size": "16MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 16777216, | ||
"use_1200bps_touch": true, | ||
"wait_for_upload_port": true, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://www.adafruit.com/product/5800", | ||
"vendor": "Adafruit" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
"variant": "arduino_nano_nora" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"build": { | ||
"arduino": { | ||
"ldscript": "esp32s3_out.ld", | ||
"memory_type": "qio_opi", | ||
"partitions": "default_8MB.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DARDUINO_ATD143_S3", | ||
"-DARDUINO_USB_MODE=1", | ||
"-DARDUINO_RUNNING_CORE=1", | ||
"-DARDUINO_EVENT_RUNNING_CORE=1" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"hwids": [ | ||
[ | ||
"0x303A", | ||
"0x1001" | ||
] | ||
], | ||
"mcu": "esp32s3", | ||
"variant": "atd147_s3" | ||
}, | ||
"connectivity": [ | ||
"bluetooth", | ||
"wifi" | ||
], | ||
"debug": { | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "ArtronShop ATD1.47-S3", | ||
"upload": { | ||
"flash_size": "8MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 8388608, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://github.com/ArtronShop", | ||
"vendor": "ArtronShop" | ||
} |
Oops, something went wrong.