Skip to content

Commit c711383

Browse files
committed
Merge branch 'release/v3.0.0'
2 parents c266d51 + 7e0dcf0 commit c711383

37 files changed

+823
-135
lines changed

.github/workflows/examples.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-16.04, windows-latest, macos-latest]
11-
python-version: [2.7, 3.7]
11+
python-version: [3.7]
1212
example:
1313
- "examples/arduino-blink"
1414
- "examples/arduino-briki-internal-libs"
@@ -22,6 +22,7 @@ jobs:
2222
- "examples/espidf-hello-world"
2323
- "examples/espidf-http-request"
2424
- "examples/espidf-peripherals-uart"
25+
- "examples/espidf-peripherals-usb"
2526
- "examples/espidf-storage-sdcard"
2627
- "examples/espidf-ulp-adc"
2728
- "examples/espidf-ulp-pulse"

boards/esp32-s2-kaluga-1.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": "esp32s2_out.ld"
5+
},
6+
"core": "esp32",
7+
"f_cpu": "240000000L",
8+
"f_flash": "80000000L",
9+
"flash_mode": "dio",
10+
"mcu": "esp32s2",
11+
"variant": "esp32s2"
12+
},
13+
"connectivity": [
14+
"wifi"
15+
],
16+
"debug": {
17+
"default_tool": "ftdi",
18+
"onboard_tools": [
19+
"ftdi"
20+
],
21+
"openocd_target": "esp32s2.cfg"
22+
},
23+
"frameworks": [
24+
"espidf"
25+
],
26+
"name": "Espressif ESP32-S2-Kaluga-1 Kit",
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://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-esp32-s2-kaluga-1-kit.html",
35+
"vendor": "Espressif"
36+
}

boards/esp32-s2-saola-1.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"build": {
3+
"arduino":{
4+
"ldscript": "esp32s2_out.ld"
5+
},
6+
"core": "esp32",
7+
"f_cpu": "240000000L",
8+
"f_flash": "80000000L",
9+
"flash_mode": "dio",
10+
"mcu": "esp32s2",
11+
"variant": "esp32s2"
12+
},
13+
"connectivity": [
14+
"wifi"
15+
],
16+
"debug": {
17+
"openocd_target": "esp32s2.cfg"
18+
},
19+
"frameworks": [
20+
"espidf"
21+
],
22+
"name": "Espressif ESP32-S2-Saola-1",
23+
"upload": {
24+
"flash_size": "4MB",
25+
"maximum_ram_size": 327680,
26+
"maximum_size": 4194304,
27+
"require_upload_port": true,
28+
"speed": 460800
29+
},
30+
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-saola-1-v1.2.html",
31+
"vendor": "Espressif"
32+
}

boards/esp32cam.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32_out.ld"
4+
"ldscript": "esp32_out.ld",
5+
"partitions": "huge_app.csv"
56
},
67
"core": "esp32",
78
"extra_flags": "-DARDUINO_ESP32_DEV -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue",
89
"f_cpu": "240000000L",
910
"f_flash": "40000000L",
1011
"flash_mode": "dio",
1112
"mcu": "esp32",
12-
"partitions": "huge_app.csv",
1313
"variant": "esp32"
1414
},
1515
"connectivity": [

boards/featheresp32-s2.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"build": {
3+
"arduino":{
4+
"ldscript": "esp32s2_out.ld"
5+
},
6+
"core": "esp32",
7+
"f_cpu": "240000000L",
8+
"f_flash": "80000000L",
9+
"flash_mode": "dio",
10+
"mcu": "esp32s2",
11+
"variant": "esp32s2"
12+
},
13+
"connectivity": [
14+
"wifi"
15+
],
16+
"debug": {
17+
"openocd_target": "esp32s2.cfg"
18+
},
19+
"frameworks": [
20+
"espidf"
21+
],
22+
"name": "Adafruit ESP32-S2 Feather Development Board",
23+
"upload": {
24+
"flash_size": "4MB",
25+
"maximum_ram_size": 327680,
26+
"maximum_size": 4194304,
27+
"require_upload_port": true,
28+
"speed": 460800
29+
},
30+
"url": "https://www.adafruit.com/product/4769",
31+
"vendor": "Adafruit"
32+
}

boards/heltec_wifi_lora_32_V2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32_out.ld"
4+
"ldscript": "esp32_out.ld",
5+
"partitions": "default_8MB.csv"
56
},
67
"core": "esp32",
78
"extra_flags": "-DARDUINO_HELTEC_WIFI_LORA_32_V2",
89
"f_cpu": "240000000L",
910
"f_flash": "40000000L",
1011
"flash_mode": "dio",
1112
"mcu": "esp32",
12-
"partitions": "default_8MB.csv",
1313
"variant": "heltec_wifi_lora_32_V2"
1414
},
1515
"connectivity": [

boards/heltec_wireless_stick.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32_out.ld"
4+
"ldscript": "esp32_out.ld",
5+
"partitions": "default_8MB.csv"
56
},
67
"core": "esp32",
78
"extra_flags": "-DARDUINO_HELTEC_WIRELESS_STICK",
89
"f_cpu": "240000000L",
910
"f_flash": "40000000L",
1011
"flash_mode": "dio",
1112
"mcu": "esp32",
12-
"partitions": "default_8MB.csv",
1313
"variant": "heltec_wireless_stick"
1414
},
1515
"connectivity": [

boards/m5stack-fire.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32_out.ld"
4+
"ldscript": "esp32_out.ld",
5+
"partitions": "default_16MB.csv"
56
},
67
"core": "esp32",
78
"extra_flags": "-DARDUINO_M5STACK_FIRE",
89
"f_cpu": "240000000L",
910
"f_flash": "40000000L",
1011
"flash_mode": "dio",
1112
"mcu": "esp32",
12-
"partitions": "default_16MB.csv",
1313
"variant": "m5stack_fire"
1414
},
1515
"connectivity": [

boards/nina_w10.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"build": {
33
"arduino":{
4-
"ldscript": "esp32_out.ld"
4+
"ldscript": "esp32_out.ld",
5+
"partitions": "minimal.csv"
56
},
67
"core": "esp32",
78
"extra_flags": "-DARDUINO_UBLOX_NINA_W10",
89
"f_cpu": "240000000L",
910
"f_flash": "40000000L",
1011
"flash_mode": "dio",
1112
"mcu": "esp32",
12-
"partitions": "minimal.csv",
1313
"variant": "nina_w10"
1414
},
1515
"connectivity": [

boards/nscreen-32.json

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

0 commit comments

Comments
 (0)