Skip to content

Commit 4cef0e5

Browse files
authored
Added support for Heltec V3 boards (platformio#954)
Added boards: Heltec WiFi LoRa 32 (V3) and Heltec WiFi Kit 32 (V3)
1 parent aa5beb4 commit 4cef0e5

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

boards/heltec_wifi_kit_32_V3.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+
"ldscript": "esp32s3_out.ld",
5+
"partitions": "default_8MB.csv"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_heltec_wifi_kit_32_V3",
10+
"-DARDUINO_RUNNING_CORE=1",
11+
"-DARDUINO_EVENT_RUNNING_CORE=1",
12+
"-DARDUINO_USB_MODE=1"
13+
],
14+
"f_cpu": "240000000L",
15+
"f_flash": "80000000L",
16+
"flash_mode": "qio",
17+
"hwids": [
18+
[
19+
"0x303A",
20+
"0x1001"
21+
]
22+
],
23+
"mcu": "esp32s3",
24+
"variant": "heltec_wifi_kit_32_v3"
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": "Heltec WiFi Kit 32 (V3)",
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://heltec.org/project/wifi-kit-32-v3/",
46+
"vendor": "Heltec"
47+
}

boards/heltec_wifi_lora_32_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+
"ldscript": "esp32s3_out.ld",
5+
"partitions": "default_8MB.csv"
6+
},
7+
"core": "esp32",
8+
"extra_flags": [
9+
"-DARDUINO_heltec_wifi_lora_32_V3",
10+
"-DARDUINO_USB_MODE=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+
"0x303A",
20+
"0x1001"
21+
]
22+
],
23+
"mcu": "esp32s3",
24+
"variant": "heltec_wifi_lora_32_V3"
25+
},
26+
"connectivity": [
27+
"wifi",
28+
"bluetooth",
29+
"lora"
30+
],
31+
"debug": {
32+
"openocd_target": "esp32s3.cfg"
33+
},
34+
"frameworks": [
35+
"arduino",
36+
"espidf"
37+
],
38+
"name": "Heltec WiFi LoRa 32 (V3)",
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://heltec.org/project/wifi-lora-32-v3/",
47+
"vendor": "Heltec"
48+
}

0 commit comments

Comments
 (0)