Skip to content

Commit ca8f5c6

Browse files
authored
Tasmota Arduino Core 3.0.5
1 parent 163ac91 commit ca8f5c6

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
python -m pip install --upgrade pip
4646
pip install wheel
47-
pip install -U https://github.com/Jason2866/platformio-core/archive/rm_telemetry.zip
47+
pip install -U https://github.com/Jason2866/platformio-core/archive/refs/tags/v6.1.16+free.zip
4848
pio pkg install --global --platform symlink://.
4949
- name: git clone Tasmota and add to examples
5050
if: "matrix.example == 'examples/tasmota' && matrix.os != 'windows-2022'"

builder/main.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -261,12 +261,9 @@ def __fetch_fs_size(target, source, env):
261261
GDB=join(
262262
platform.get_package_dir(
263263
"tool-riscv32-esp-elf-gdb"
264-
if mcu in ("esp32c2", "esp32c3", "esp32c6")
264+
if mcu in ("esp32c2", "esp32c3", "esp32c6", "esp32h2")
265265
else "tool-xtensa-esp-elf-gdb"
266266
)
267-
or "",
268-
"bin",
269-
"%s-elf-gdb" % toolchain_arch,
270267
),
271268
OBJCOPY=join(platform.get_package_dir("tool-esptoolpy") or "", "esptool.py"),
272269
RANLIB="%s-elf-gcc-ranlib" % toolchain_arch,
@@ -326,7 +323,7 @@ def __fetch_fs_size(target, source, env):
326323
"-b",
327324
"$FS_BLOCK",
328325
]
329-
if filesystem in ("littlefs")
326+
if filesystem in ("littlefs", "spiffs")
330327
else []
331328
)
332329
+ ["$TARGET"]

0 commit comments

Comments
 (0)