Skip to content

Commit bba9d55

Browse files
committed
Update Arduino core to v2.0.4
1 parent 019ee09 commit bba9d55

14 files changed

+130
-77
lines changed

boards/adafruit_feather_esp32s2_tft.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"build": {
33
"arduino": {
4-
"ldscript": "esp32s2_out.ld"
4+
"ldscript": "esp32s2_out.ld",
5+
"partitions": "partitions-4MB-tinyuf2.csv"
56
},
67
"core": "esp32",
78
"extra_flags": [
@@ -41,14 +42,6 @@
4142
],
4243
"name": "Adafruit Feather ESP32-S2 TFT",
4344
"upload": {
44-
"arduino": {
45-
"flash_extra_images": [
46-
[
47-
"0x2d0000",
48-
"variants/adafruit_feather_esp32s2_tft/tinyuf2.bin"
49-
]
50-
]
51-
},
5245
"flash_size": "4MB",
5346
"maximum_ram_size": 327680,
5447
"maximum_size": 4194304,

boards/adafruit_feather_esp32s3.json

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32s3_out.ld"
4+
"ldscript": "esp32s3_out.ld",
5+
"partitions": "partitions.csv"
56
},
67
"core": "esp32",
78
"extra_flags": [
8-
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S3_NOPSRAM",
9+
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S3",
910
"-DARDUINO_USB_CDC_ON_BOOT=1",
1011
"-DARDUINO_RUNNING_CORE=1",
1112
"-DARDUINO_EVENT_RUNNING_CORE=1"
@@ -16,19 +17,19 @@
1617
"hwids": [
1718
[
1819
"0x239A",
19-
"0x8113"
20+
"0x811B"
2021
],
2122
[
2223
"0x239A",
23-
"0x0113"
24+
"0x011B"
2425
],
2526
[
2627
"0x239A",
27-
"0x8114"
28+
"0x811C"
2829
]
2930
],
3031
"mcu": "esp32s3",
31-
"variant": "adafruit_feather_esp32s3_nopsram"
32+
"variant": "adafruit_feather_esp32s3"
3233
},
3334
"connectivity": [
3435
"wifi"
@@ -40,24 +41,16 @@
4041
"arduino",
4142
"espidf"
4243
],
43-
"name": "Adafruit Feather ESP32-S3 No PSRAM",
44+
"name": "Adafruit Feather ESP32-S3 2MB PSRAM",
4445
"upload": {
45-
"arduino": {
46-
"flash_extra_images": [
47-
[
48-
"0x410000",
49-
"variants/adafruit_feather_esp32s3_nopsram/tinyuf2.bin"
50-
]
51-
]
52-
},
53-
"flash_size": "8MB",
46+
"flash_size": "4MB",
5447
"maximum_ram_size": 327680,
55-
"maximum_size": 8388608,
48+
"maximum_size": 4194304,
5649
"use_1200bps_touch": true,
5750
"wait_for_upload_port": true,
5851
"require_upload_port": true,
5952
"speed": 460800
6053
},
61-
"url": "https://www.adafruit.com/product/5323",
54+
"url": "https://www.adafruit.com/product/5477",
6255
"vendor": "Adafruit"
6356
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"build": {
3+
"arduino":{
4+
"ldscript": "esp32s3_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S3_NOPSRAM",
9+
"-DARDUINO_USB_CDC_ON_BOOT=1",
10+
"-DARDUINO_RUNNING_CORE=1",
11+
"-DARDUINO_EVENT_RUNNING_CORE=1"
12+
],
13+
"f_cpu": "240000000L",
14+
"f_flash": "80000000L",
15+
"flash_mode": "qio",
16+
"hwids": [
17+
[
18+
"0x239A",
19+
"0x811B"
20+
],
21+
[
22+
"0x239A",
23+
"0x011B"
24+
],
25+
[
26+
"0x239A",
27+
"0x811C"
28+
]
29+
],
30+
"mcu": "esp32s3",
31+
"variant": "adafruit_feather_esp32s3_nopsram"
32+
},
33+
"connectivity": [
34+
"wifi"
35+
],
36+
"debug": {
37+
"openocd_target": "esp32s3.cfg"
38+
},
39+
"frameworks": [
40+
"arduino",
41+
"espidf"
42+
],
43+
"name": "Adafruit Feather ESP32-S3 No PSRAM",
44+
"upload": {
45+
"arduino": {
46+
"flash_extra_images": [
47+
[
48+
"0x2d0000",
49+
"variants/adafruit_feather_esp32s3_nopsram/tinyuf2.bin"
50+
]
51+
]
52+
},
53+
"flash_size": "8MB",
54+
"maximum_ram_size": 327680,
55+
"maximum_size": 8388608,
56+
"use_1200bps_touch": true,
57+
"wait_for_upload_port": true,
58+
"require_upload_port": true,
59+
"speed": 460800
60+
},
61+
"url": "https://www.adafruit.com/product/5323",
62+
"vendor": "Adafruit"
63+
}

boards/adafruit_funhouse_esp32s2.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32s2_out.ld"
4+
"ldscript": "esp32s2_out.ld",
5+
"partitions": "partitions-4MB-tinyuf2.csv"
56
},
67
"core": "esp32",
78
"extra_flags": [
@@ -41,14 +42,6 @@
4142
],
4243
"name": "Adafruit FunHouse",
4344
"upload": {
44-
"arduino": {
45-
"flash_extra_images": [
46-
[
47-
"0x2d0000",
48-
"variants/adafruit_funhouse_esp32s2/tinyuf2.bin"
49-
]
50-
]
51-
},
5245
"flash_size": "4MB",
5346
"maximum_ram_size": 327680,
5447
"maximum_size": 4194304,

boards/adafruit_magtag29_esp32s2.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32s2_out.ld"
4+
"ldscript": "esp32s2_out.ld",
5+
"partitions": "partitions-4MB-tinyuf2.csv"
56
},
67
"core": "esp32",
78
"extra_flags": [
@@ -41,14 +42,6 @@
4142
],
4243
"name": "Adafruit MagTag 2.9",
4344
"upload": {
44-
"arduino": {
45-
"flash_extra_images": [
46-
[
47-
"0x2d0000",
48-
"variants/adafruit_magtag29_esp32s2/tinyuf2.bin"
49-
]
50-
]
51-
},
5245
"flash_size": "4MB",
5346
"maximum_ram_size": 327680,
5447
"maximum_size": 4194304,

boards/adafruit_metro_esp32s2.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32s2_out.ld"
4+
"ldscript": "esp32s2_out.ld",
5+
"partitions": "partitions-4MB-tinyuf2.csv"
56
},
67
"core": "esp32",
78
"extra_flags": [
@@ -41,14 +42,6 @@
4142
],
4243
"name": "Adafruit Metro ESP32-S2",
4344
"upload": {
44-
"arduino": {
45-
"flash_extra_images": [
46-
[
47-
"0x2d0000",
48-
"variants/adafruit_metro_esp32s2/tinyuf2.bin"
49-
]
50-
]
51-
},
5245
"flash_size": "4MB",
5346
"maximum_ram_size": 327680,
5447
"maximum_size": 4194304,

boards/adafruit_qtpy_esp32s2.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"build": {
33
"arduino": {
4-
"ldscript": "esp32s2_out.ld"
4+
"ldscript": "esp32s2_out.ld",
5+
"partitions": "partitions-4MB-tinyuf2.csv"
56
},
67
"core": "esp32",
78
"extra_flags": [
@@ -41,14 +42,6 @@
4142
],
4243
"name": "Adafruit QT Py ESP32-S2",
4344
"upload": {
44-
"arduino": {
45-
"flash_extra_images": [
46-
[
47-
"0x2d0000",
48-
"variants/adafruit_qtpy_esp32s2/tinyuf2.bin"
49-
]
50-
]
51-
},
5245
"flash_size": "4MB",
5346
"maximum_ram_size": 327680,
5447
"maximum_size": 4194304,

boards/adafruit_qtpy_esp32s3.json renamed to boards/adafruit_qtpy_esp32s3_nopsram.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"build": {
3-
"arduino":{
3+
"arduino": {
44
"ldscript": "esp32s3_out.ld"
55
},
66
"core": "esp32",

boards/atmegazero_esp32s2.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32s2_out.ld"
4+
"ldscript": "esp32s2_out.ld",
5+
"partitions": "partitions-16MB-tinyuf2.csv"
56
},
67
"core": "esp32",
78
"extra_flags": [
@@ -32,14 +33,6 @@
3233
],
3334
"name": "EspinalLab ATMegaZero ESP32-S2",
3435
"upload": {
35-
"arduino": {
36-
"flash_extra_images": [
37-
[
38-
"0x2d0000",
39-
"variants/atmegazero_esp32s2/tinyuf2.bin"
40-
]
41-
]
42-
},
4336
"flash_size": "16MB",
4437
"maximum_ram_size": 327680,
4538
"maximum_size": 16777216,

boards/cnrs_aw2eth.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32_out.ld"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_ESP32_PICO"
9+
],
10+
"f_cpu": "240000000L",
11+
"f_flash": "40000000L",
12+
"flash_mode": "dio",
13+
"mcu": "esp32",
14+
"variant": "cnrs_aw2eth"
15+
},
16+
"connectivity": [
17+
"wifi",
18+
"bluetooth",
19+
"ethernet",
20+
"can"
21+
],
22+
"frameworks": [
23+
"arduino",
24+
"espidf"
25+
],
26+
"name": "CNRS AW2ETH",
27+
"upload": {
28+
"flash_size": "4MB",
29+
"maximum_ram_size": 327680,
30+
"maximum_size": 4194304,
31+
"require_upload_port": true,
32+
"speed": 460800
33+
},
34+
"url": "https://en.wikipedia.org/wiki/ESP32",
35+
"vendor": "CNRS"
36+
}

0 commit comments

Comments
 (0)