Skip to content

Commit b25f39b

Browse files
authored
feat(board): Add boards YB-ESP32-S3-AMP-V2, YB-ESP32-S3-AMP-V3 and YB-ESP32-S3-ETH (#103)
* board definition files added * "ldscript": "esp32s3_out.ld" removed * "memory_type": "qio_qspi" added
1 parent ccf2dba commit b25f39b

File tree

3 files changed

+146
-0
lines changed

3 files changed

+146
-0
lines changed

boards/yb_esp32s3_amp_v2.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"build": {
3+
"arduino":{
4+
"partitions": "default_8MB.csv",
5+
"memory_type": "qio_qspi"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_YB_ESP32S3_AMP_V2",
10+
"-DARDUINO_RUNNING_CORE=1",
11+
"-DARDUINO_EVENT_RUNNING_CORE=1",
12+
"-DBOARD_HAS_PSRAM"
13+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"hwids": [
18+
[
19+
"0x1A86",
20+
"0x7523"
21+
]
22+
],
23+
"mcu": "esp32s3",
24+
"variant": "yb_esp32s3_amp_v2"
25+
},
26+
"connectivity": [
27+
"wifi",
28+
"bluetooth"
29+
],
30+
"debug": {
31+
"openocd_target": "esp32s3.cfg"
32+
},
33+
"frameworks": [
34+
"arduino",
35+
"espidf"
36+
],
37+
"name": "YelloByte YB-ESP32-S3-AMP (Rev.2)",
38+
"upload": {
39+
"flash_size": "8MB",
40+
"maximum_ram_size": 327680,
41+
"maximum_size": 8388608,
42+
"require_upload_port": true,
43+
"speed": 460800
44+
},
45+
"url": "https://github.com/yellobyte/ESP32-DevBoards-Getting-Started/tree/main/boards/YB-ESP32-S3-AMP",
46+
"vendor": "YelloByte"
47+
}

boards/yb_esp32s3_amp_v3.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"build": {
3+
"arduino":{
4+
"partitions": "default_8MB.csv",
5+
"memory_type": "qio_qspi"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_YB_ESP32S3_AMP_V3",
10+
"-DARDUINO_USB_CDC_ON_BOOT=1",
11+
"-DARDUINO_RUNNING_CORE=1",
12+
"-DARDUINO_EVENT_RUNNING_CORE=1",
13+
"-DBOARD_HAS_PSRAM"
14+
],
15+
"f_cpu": "240000000L",
16+
"f_flash": "80000000L",
17+
"flash_mode": "qio",
18+
"hwids": [
19+
[
20+
"0x303A",
21+
"0x1001"
22+
]
23+
],
24+
"mcu": "esp32s3",
25+
"variant": "yb_esp32s3_amp_v3"
26+
},
27+
"connectivity": [
28+
"wifi",
29+
"bluetooth"
30+
],
31+
"debug": {
32+
"openocd_target": "esp32s3.cfg"
33+
},
34+
"frameworks": [
35+
"arduino",
36+
"espidf"
37+
],
38+
"name": "YelloByte YB-ESP32-S3-AMP (Rev.3)",
39+
"upload": {
40+
"flash_size": "8MB",
41+
"maximum_ram_size": 327680,
42+
"maximum_size": 8388608,
43+
"require_upload_port": true,
44+
"speed": 460800
45+
},
46+
"url": "https://github.com/yellobyte/ESP32-DevBoards-Getting-Started/tree/main/boards/YB-ESP32-S3-AMP",
47+
"vendor": "YelloByte"
48+
}

boards/yb_esp32s3_eth.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"build": {
3+
"arduino":{
4+
"partitions": "default.csv"
5+
},
6+
"core": "esp32",
7+
"extra_flags": [
8+
"-DARDUINO_YB_ESP32S3_ETH",
9+
"-DARDUINO_USB_MODE=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+
"0x303A",
19+
"0x1001"
20+
]
21+
],
22+
"mcu": "esp32s3",
23+
"variant": "yb_esp32s3_eth"
24+
},
25+
"connectivity": [
26+
"wifi",
27+
"bluetooth",
28+
"ethernet"
29+
],
30+
"debug": {
31+
"default_tool": "esp-builtin",
32+
"onboard_tools": [
33+
"esp-builtin"
34+
],
35+
"openocd_target": "esp32s3.cfg"
36+
},
37+
"frameworks": [
38+
"arduino",
39+
"espidf"
40+
],
41+
"name": "YelloByte YB-ESP32-S3-ETH",
42+
"upload": {
43+
"flash_size": "4MB",
44+
"maximum_ram_size": 327680,
45+
"maximum_size": 4194304,
46+
"require_upload_port": true,
47+
"speed": 460800
48+
},
49+
"url": "https://github.com/yellobyte/ESP32-DevBoards-Getting-Started/tree/main/boards/YB-ESP32-S3-ETH",
50+
"vendor": "YelloByte"
51+
}

0 commit comments

Comments
 (0)