Skip to content

Commit bf0df40

Browse files
committed
Merge branch 'release/v0.3.0'
2 parents ecb1763 + 5d800a2 commit bf0df40

File tree

19 files changed

+315
-14
lines changed

19 files changed

+315
-14
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ env:
66
- PLATFORMIO_PROJECT_DIR=examples/arduino-blink
77
- PLATFORMIO_PROJECT_DIR=examples/arduino-wifiscan
88
- PLATFORMIO_PROJECT_DIR=examples/espidf-http-request
9+
- PLATFORMIO_PROJECT_DIR=examples/simba-blink
910

1011
install:
1112
- pip install -U https://github.com/platformio/platformio/archive/develop.zip

boards/esp320.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "esp32",
44
"extra_flags": "-DESP32_DEV -DARDUINO_ESP320",
5-
"f_cpu": "160000000L",
5+
"f_cpu": "240000000L",
66
"f_flash": "80000000L",
77
"flash_mode": "qio",
88
"ldscript": "esp32_out.ld",

boards/esp32dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "esp32",
44
"extra_flags": "-DESP32_DEV -DARDUINO_ESP32_DEV",
5-
"f_cpu": "160000000L",
5+
"f_cpu": "240000000L",
66
"f_flash": "80000000L",
77
"flash_mode": "dio",
88
"ldscript": "esp32_out.ld",

boards/esp32thing.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "esp32",
44
"extra_flags": "-DESP32_DEV -DARDUINO_ESP32_DEV",
5-
"f_cpu": "160000000L",
5+
"f_cpu": "240000000L",
66
"f_flash": "80000000L",
77
"flash_mode": "dio",
88
"ldscript": "esp32_out.ld",

boards/espea32.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "esp32",
44
"extra_flags": "-DESP32_DEV -DARDUINO_ESPea32",
5-
"f_cpu": "160000000L",
5+
"f_cpu": "240000000L",
66
"f_flash": "80000000L",
77
"flash_mode": "dio",
88
"ldscript": "esp32_out.ld",

boards/lolin32.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "esp32",
44
"extra_flags": "-DESP32_DEV -DARDUINO_LoLin32",
5-
"f_cpu": "160000000L",
5+
"f_cpu": "240000000L",
66
"f_flash": "80000000L",
77
"flash_mode": "dio",
88
"ldscript": "esp32_out.ld",

boards/nano32.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "esp32",
44
"extra_flags": "-DESP32_DEV -DARDUINO_NANO32",
5-
"f_cpu": "160000000L",
5+
"f_cpu": "240000000L",
66
"f_flash": "80000000L",
77
"flash_mode": "dio",
88
"ldscript": "esp32_out.ld",
@@ -11,7 +11,8 @@
1111
},
1212
"frameworks": [
1313
"arduino",
14-
"espidf"
14+
"espidf",
15+
"simba"
1516
],
1617
"name": "MakerAsia Nano32",
1718
"upload": {

boards/node32s.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"build": {
3+
"core": "esp32",
4+
"extra_flags": "-DESP32_DEV -DARDUINO_Node32s",
5+
"f_cpu": "240000000L",
6+
"f_flash": "80000000L",
7+
"flash_mode": "dio",
8+
"ldscript": "esp32_out.ld",
9+
"mcu": "esp32",
10+
"variant": "esp32"
11+
},
12+
"frameworks": [
13+
"arduino",
14+
"espidf"
15+
],
16+
"name": "Node32s",
17+
"upload": {
18+
"maximum_ram_size": 114688,
19+
"maximum_size": 1044464,
20+
"require_upload_port": true,
21+
"resetmethod": "nodemcu",
22+
"speed": 115200,
23+
"wait_for_upload_port": true
24+
},
25+
"url": "http://www.ayarafun.com",
26+
"vendor": "Aiyarafun"
27+
}

boards/quantum.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"build": {
33
"core": "esp32",
44
"extra_flags": "-DESP32_DEV -DARDUINO_QUANTUM",
5-
"f_cpu": "160000000L",
5+
"f_cpu": "240000000L",
66
"f_flash": "80000000L",
77
"flash_mode": "qio",
88
"ldscript": "esp32_out.ld",

builder/frameworks/arduino.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
join(FRAMEWORK_DIR, "tools", "sdk", "include", "bt"),
4444
join(FRAMEWORK_DIR, "tools", "sdk", "include", "driver"),
4545
join(FRAMEWORK_DIR, "tools", "sdk", "include", "esp32"),
46+
join(FRAMEWORK_DIR, "tools", "sdk", "include", "ethernet"),
4647
join(FRAMEWORK_DIR, "tools", "sdk", "include", "freertos"),
4748
join(FRAMEWORK_DIR, "tools", "sdk", "include", "log"),
4849
join(FRAMEWORK_DIR, "tools", "sdk", "include", "lwip"),
@@ -62,10 +63,12 @@
6263
join(FRAMEWORK_DIR, "tools", "sdk", "ld"),
6364
],
6465
LIBS=[
65-
"hal", "core", "net80211", "phy", "rtc", "pp", "wpa",
66-
"smartconfig", "btdm_app", "bt", "driver", "esp32", "crypto", "expat",
67-
"freertos", "json", "log", "lwip", "mbedtls", "nghttp", "nvs_flash",
68-
"spi_flash", "tcpip_adapter", "newlib", "vfs", "gcc", "m", "c"
66+
"app_update", "bt", "btdm_app", "c", "coexist", "core", "driver",
67+
"esp32", "ethernet", "expat", "freertos", "g", "hal", "json", "log",
68+
"lwip", "m", "mbedtls", "net80211", "newlib", "nghttp", "nvs_flash",
69+
"openssl", "phy", "pp", "rtc", "smartconfig", "spi_flash",
70+
"tcpip_adapter", "ulp", "vfs", "wpa", "wpa2", "wpa_supplicant", "wps",
71+
"xtensa-debug-module"
6972
]
7073
)
7174

0 commit comments

Comments
 (0)