Skip to content

Commit

Permalink
Tasmota Arduino Core 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Sep 18, 2024
1 parent 163ac91 commit ca8f5c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install wheel
pip install -U https://github.com/Jason2866/platformio-core/archive/rm_telemetry.zip
pip install -U https://github.com/Jason2866/platformio-core/archive/refs/tags/v6.1.16+free.zip
pio pkg install --global --platform symlink://.
- name: git clone Tasmota and add to examples
if: "matrix.example == 'examples/tasmota' && matrix.os != 'windows-2022'"
Expand Down
7 changes: 2 additions & 5 deletions builder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,12 +261,9 @@ def __fetch_fs_size(target, source, env):
GDB=join(
platform.get_package_dir(
"tool-riscv32-esp-elf-gdb"
if mcu in ("esp32c2", "esp32c3", "esp32c6")
if mcu in ("esp32c2", "esp32c3", "esp32c6", "esp32h2")
else "tool-xtensa-esp-elf-gdb"
)
or "",
"bin",
"%s-elf-gdb" % toolchain_arch,
),
OBJCOPY=join(platform.get_package_dir("tool-esptoolpy") or "", "esptool.py"),
RANLIB="%s-elf-gcc-ranlib" % toolchain_arch,
Expand Down Expand Up @@ -326,7 +323,7 @@ def __fetch_fs_size(target, source, env):
"-b",
"$FS_BLOCK",
]
if filesystem in ("littlefs")
if filesystem in ("littlefs", "spiffs")
else []
)
+ ["$TARGET"]
Expand Down

0 comments on commit ca8f5c6

Please sign in to comment.