Skip to content

Commit

Permalink
Merge branch 'release/v6.6.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
valeros committed Mar 29, 2024
2 parents b0a7f56 + 8494318 commit 38f570b
Show file tree
Hide file tree
Showing 229 changed files with 3,638 additions and 44,890 deletions.
1 change: 0 additions & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
example:
- "examples/arduino-ble5-advertising"
- "examples/arduino-blink"
- "examples/arduino-briki-internal-libs"
- "examples/arduino-usb-keyboard"
- "examples/arduino-wifiscan"
- "examples/espidf-arduino-blink"
Expand Down
64 changes: 64 additions & 0 deletions boards/adafruit_feather_esp32s2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"build": {
"arduino": {
"ldscript": "esp32s2_out.ld",
"partitions": "partitions-4MB-tinyuf2.csv",
"memory_type": "qio_qspi"
},
"core": "esp32",
"extra_flags": [
"-DARDUINO_ADAFRUIT_FEATHER_ESP32S2",
"-DBOARD_HAS_PSRAM",
"-DARDUINO_USB_CDC_ON_BOOT=1"
],
"f_cpu": "240000000L",
"f_flash": "80000000L",
"flash_mode": "qio",
"hwids": [
[
"0x239A",
"0x80EB"
],
[
"0x239A",
"0x00EB"
],
[
"0x239A",
"0x80EC"
]
],
"mcu": "esp32s2",
"variant": "adafruit_feather_esp32s2"
},
"connectivity": [
"wifi"
],
"debug": {
"openocd_target": "esp32s2.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "Adafruit Feather ESP32-S2",
"upload": {
"arduino": {
"flash_extra_images": [
[
"0x2d0000",
"variants/adafruit_feather_esp32s2/tinyuf2.bin"
]
]
},
"flash_size": "4MB",
"maximum_ram_size": 327680,
"maximum_size": 4194304,
"use_1200bps_touch": true,
"wait_for_upload_port": true,
"require_upload_port": true,
"speed": 460800
},
"url": "https://www.adafruit.com/product/5000",
"vendor": "Adafruit"
}
41 changes: 0 additions & 41 deletions boards/briki_abc_esp32.json

This file was deleted.

41 changes: 0 additions & 41 deletions boards/briki_mbc-wb_esp32.json

This file was deleted.

1 change: 1 addition & 0 deletions boards/esp32-s3-devkitm-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"variant": "esp32s3"
},
"connectivity": [
"bluetooth",
"wifi"
],
"debug": {
Expand Down
60 changes: 60 additions & 0 deletions boards/lilka_v2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"build": {
"arduino":{
"ldscript": "esp32s3_out.ld",
"memory_type": "qio_opi",
"partitions": "default_16MB.csv"
},
"core": "esp32",
"extra_flags": [
"-DARDUINO_LILKA",
"-DLILKA_VERSION=2",
"-DARDUINO_USB_MODE=1",
"-DARDUINO_USB_CDC_ON_BOOT=1",
"-DARDUINO_RUNNING_CORE=1",
"-DARDUINO_EVENT_RUNNING_CORE=1",
"-DBOARD_HAS_PSRAM"
],
"f_cpu": "240000000L",
"f_flash": "80000000L",
"flash_mode": "qio",
"hwids": [
[
"0x239A",
"0x8145"
],
[
"0x239A",
"0x0145"
],
[
"0x239A",
"0x8146"
]
],
"mcu": "esp32s3",
"variant": "esp32s3"
},
"connectivity": [
"bluetooth",
"wifi"
],
"debug": {
"openocd_target": "esp32s3.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "Lilka v2",
"upload": {
"flash_size": "16MB",
"maximum_ram_size": 327680,
"maximum_size": 16777216,
"require_upload_port": true,
"speed": 460800
},
"url": "https://github.com/and3rson/lilka",
"vendor": "Anderson & friends"
}

3 changes: 3 additions & 0 deletions boards/lolin32_lite.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand Down
49 changes: 49 additions & 0 deletions boards/lolin_s3_pro.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"build": {
"arduino": {
"ldscript": "esp32s3_out.ld",
"partitions": "default_16MB.csv",
"memory_type": "qio_opi"
},
"core": "esp32",
"extra_flags": [
"-DARDUINO_LOLIN_S3_PRO",
"-DBOARD_HAS_PSRAM",
"-DARDUINO_USB_MODE=1",
"-DARDUINO_RUNNING_CORE=1",
"-DARDUINO_EVENT_RUNNING_CORE=1"
],
"f_cpu": "240000000L",
"f_flash": "80000000L",
"flash_mode": "qio",
"hwids": [
[
"0x303A",
"0x8161"
]
],
"mcu": "esp32s3",
"variant": "lolin_s3_pro"
},
"connectivity": [
"wifi",
"bluetooth"
],
"debug": {
"openocd_target": "esp32s3.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "WEMOS LOLIN S3 PRO",
"upload": {
"flash_size": "16MB",
"maximum_ram_size": 327680,
"maximum_size": 16777216,
"require_upload_port": true,
"speed": 460800
},
"url": "https://www.wemos.cc/en/latest/s3/s3_pro.html",
"vendor": "WEMOS"
}
7 changes: 1 addition & 6 deletions builder/frameworks/arduino.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,7 @@

SConscript("_embed_files.py", exports="env")

if build_core == "mbcwb":
SConscript(
join(DefaultEnvironment().PioPlatform().get_package_dir(
"framework-arduino-mbcwb"), "tools", "platformio-esp-build.py"))

elif "espidf" not in env.subst("$PIOFRAMEWORK"):
if "espidf" not in env.subst("$PIOFRAMEWORK"):
SConscript(
join(DefaultEnvironment().PioPlatform().get_package_dir(
"framework-arduinoespressif32"), "tools", "platformio-build.py"))
Expand Down
Loading

0 comments on commit 38f570b

Please sign in to comment.