Skip to content

Commit

Permalink
Merge pull request #83 from Jason2866/Tasmota/20x
Browse files Browse the repository at this point in the history
core 2.0.12 / IDF 4.4.5.20230901
  • Loading branch information
Jason2866 authored Sep 10, 2023
2 parents 857fe11 + f43a6b5 commit 4e60646
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Espressif Systems is a privately held fabless semiconductor company. They provid
2. Create PlatformIO project and configure a platform option in [platformio.ini](http://docs.platformio.org/page/projectconf.html) file:

### Stable Release supporting Arduino and IDF 4.4.5
based on Arduino Core 2.0.11 and can be used with Platformio for the ESP32/ESP32solo1, ESP32C3, ESP32S2 and ESP32S3
based on Arduino Core 2.0.12 and can be used with Platformio for the ESP32/ESP32solo1, ESP32C3, ESP32S2 and ESP32S3
```
[platformio]
platform = https://github.com/tasmota/platform-espressif32/releases/download/2023.08.01/platform-espressif32.zip
platform = https://github.com/tasmota/platform-espressif32/releases/download/2023.09.00/platform-espressif32.zip
framework = arduino
```
to use the ESP32 Solo1 Arduino framework add in your env
Expand Down
6 changes: 5 additions & 1 deletion builder/frameworks/espidf.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,11 @@ def _fix_component_relative_include(config, build_flags, source_index):

def prepare_build_envs(config, default_env, debug_allowed=True):
build_envs = []
target_compile_groups = config.get("compileGroups")
target_compile_groups = config.get("compileGroups", [])
if not target_compile_groups:
print("Warning! The `%s` component doesn't register any source files. "
"Check if sources are set in component's CMakeLists.txt!" % config["name"]
)

is_build_type_debug = "debug" in env.GetBuildType() and debug_allowed
for cg in target_compile_groups:
Expand Down
10 changes: 5 additions & 5 deletions platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"type": "git",
"url": "https://github.com/tasmota/platform-espressif32.git"
},
"version": "2023.08.01",
"version": "2023.09.00",
"frameworks": {
"arduino": {
"script": "builder/frameworks/arduino.py"
Expand All @@ -33,25 +33,25 @@
"type": "framework",
"optional": true,
"owner": "tasmota",
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.11.20230823/framework-arduinoespressif32.zip"
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.12/framework-arduinoespressif32.zip"
},
"framework-arduino-solo1": {
"type": "framework",
"optional": true,
"owner": "tasmota",
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.11.20230823/framework-arduinoespressif32-solo1.zip"
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.12/framework-arduinoespressif32-solo1.zip"
},
"framework-arduino-ITEAD": {
"type": "framework",
"optional": true,
"owner": "tasmota",
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.11.20230823/framework-arduinoespressif32-ITEAD.zip"
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.12/framework-arduinoespressif32-ITEAD.zip"
},
"framework-espidf": {
"type": "framework",
"optional": true,
"owner": "tasmota",
"version": "https://github.com/tasmota/esp-idf/releases/download/v4.4.5.20230820/esp-idf-v4.4.5.20230820.zip"
"version": "https://github.com/tasmota/esp-idf/releases/download/v4.4.5.230901/esp-idf-v4.4.5.zip"
},
"toolchain-xtensa-esp32": {
"type": "toolchain",
Expand Down

0 comments on commit 4e60646

Please sign in to comment.