Skip to content

Commit a28daed

Browse files
committed
Merge branch 'release/v5.1.0'
2 parents db03cfd + b562f36 commit a28daed

26 files changed

+566
-122
lines changed

.github/stale.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 30
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- bug
8+
- known issue
9+
- feature
10+
- enhancement
11+
- board request
12+
# Label to use when marking an issue as stale
13+
staleLabel: stale
14+
# Comment to post when marking an issue as stale. Set to `false` to disable
15+
markComment: >
16+
This issue has been automatically marked as stale because it has not had
17+
recent activity. Please provide more details or it will be closed if no
18+
further activity occurs. Thank you for your contributions.
19+
# Comment to post when closing a stale issue. Set to `false` to disable
20+
closeComment: false

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: 9 additions & 16 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,16 +41,8 @@
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-
},
5346
"flash_size": "4MB",
5447
"maximum_ram_size": 327680,
5548
"maximum_size": 4194304,
@@ -58,6 +51,6 @@
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+
}
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"build": {
3+
"arduino": {
4+
"ldscript": "esp32s3_out.ld",
5+
"partitions": "partitions.csv"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S3_TFT",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1",
11+
"-DARDUINO_RUNNING_CORE=1",
12+
"-DARDUINO_EVENT_RUNNING_CORE=1"
13+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"hwids": [
18+
[
19+
"0x239A",
20+
"0x811D"
21+
],
22+
[
23+
"0x239A",
24+
"0x011D"
25+
],
26+
[
27+
"0x239A",
28+
"0x811E"
29+
]
30+
],
31+
"mcu": "esp32s3",
32+
"variant": "adafruit_feather_esp32s3_tft"
33+
},
34+
"connectivity": [
35+
"wifi"
36+
],
37+
"debug": {
38+
"openocd_target": "esp32s3.cfg"
39+
},
40+
"frameworks": [
41+
"arduino",
42+
"espidf"
43+
],
44+
"name": "Adafruit Feather ESP32-S3 TFT",
45+
"upload": {
46+
"arduino": {
47+
"flash_extra_images": [
48+
[
49+
"0x2d0000",
50+
"variants/adafruit_feather_esp32s3_tft/tinyuf2.bin"
51+
]
52+
]
53+
},
54+
"flash_size": "4MB",
55+
"maximum_ram_size": 327680,
56+
"maximum_size": 4194304,
57+
"use_1200bps_touch": true,
58+
"wait_for_upload_port": true,
59+
"require_upload_port": true,
60+
"speed": 460800
61+
},
62+
"url": "https://www.adafruit.com/product/5483",
63+
"vendor": "Adafruit"
64+
}

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",

0 commit comments

Comments
 (0)