Skip to content

Commit 8db316a

Browse files
committed
Add board configuration
1 parent d49ca6d commit 8db316a

File tree

2 files changed

+54
-2
lines changed

2 files changed

+54
-2
lines changed

boards/esp-wrover-ie-module.json

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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+
"debug": {
27+
"default_tool": "ftdi",
28+
"onboard_tools": [
29+
"ftdi"
30+
],
31+
"openocd_board": "esp32-wrover.cfg"
32+
},
33+
"frameworks": [
34+
"arduino",
35+
"espidf"
36+
],
37+
"name": "Espressif ESP32-WROVER-(I)E",
38+
"upload": {
39+
"flash_size": "4MB",
40+
"maximum_ram_size": 532480,
41+
"maximum_size": 4194304,
42+
"protocols": [
43+
"esptool",
44+
"espota",
45+
"ftdi"
46+
],
47+
"require_upload_port": true,
48+
"speed": 460800
49+
},
50+
"url": "https://ro.mouser.com/ProductDetail/356-ESP32WRVIE2864UC/",
51+
"vendor": "Espressif"
52+
}

platformio.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ platform_packages =
2525
board_build.partitions = min_spiffs.csv
2626

2727
[env:esp-wrover-debug]
28-
board = esp-wrover-kit
28+
board = esp-wrover-ie-module
2929
build_type = debug
3030
build_flags =
3131
-DCORE_DEBUG_LEVEL=5
@@ -34,7 +34,7 @@ build_flags =
3434
-DLOG_LOCAL_LEVEL=ESP_LOG_VERBOSE
3535

3636
[env:esp-wrover]
37-
board = esp-wrover-kit
37+
board = esp-wrover-ie-module
3838
build_flags =
3939
; -DBOARD_HAS_PSRAM
4040
; -mfix-esp32-psram-cache-issue

0 commit comments

Comments
 (0)