Skip to content

Commit

Permalink
Merge pull request #44 from Jason2866/Tasmota/205
Browse files Browse the repository at this point in the history
Tasmota framework v2.0.5.2
  • Loading branch information
Jason2866 committed Oct 28, 2022
2 parents 57b4280 + d6a5467 commit eb79d2b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
name: Examples

on: [push, pull_request]
on:
workflow_dispatch: # Manually start a workflow
push:
paths-ignore:
- '.github/**' # Ignore changes towards the .github directory
- '**.md' # Do no build if *.md files changes

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macOS-12]
example:
- "examples/arduino-ble5-advertising"
- "examples/arduino-blink"
Expand All @@ -34,7 +39,7 @@ jobs:
with:
submodules: "recursive"
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
Expand Down
12 changes: 6 additions & 6 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": "2.0.5",
"version": "2.0.5+2",
"frameworks": {
"arduino": {
"script": "builder/frameworks/arduino.py"
Expand All @@ -36,25 +36,25 @@
"type": "framework",
"optional": true,
"owner": "tasmota",
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.5.1/framework-arduinoespressif32.zip"
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.5.2/framework-arduinoespressif32.zip"
},
"framework-arduino-solo1": {
"type": "framework",
"optional": true,
"owner": "tasmota",
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.5.1/framework-arduinoespressif32-solo1.zip"
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.5.2/framework-arduinoespressif32-solo1.zip"
},
"framework-arduino-ITEAD": {
"type": "framework",
"optional": true,
"owner": "tasmota",
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.5.1/framework-arduinoespressif32-ITEAD.zip"
"version": "https://github.com/tasmota/arduino-esp32/releases/download/2.0.5.2/framework-arduinoespressif32-ITEAD.zip"
},
"framework-espidf": {
"type": "framework",
"optional": true,
"owner": "tasmota",
"version": "https://github.com/tasmota/esp-idf/releases/download/v4.4.3.5/esp-idf-v4.4.3.5.zip"
"version": "https://github.com/tasmota/esp-idf/releases/download/v4.4.3.6/esp-idf-v4.4.3.6.zip"
},
"toolchain-xtensa-esp32": {
"type": "toolchain",
Expand Down Expand Up @@ -89,7 +89,7 @@
"tool-esptoolpy": {
"type": "uploader",
"owner": "tasmota",
"version": "https://github.com/tasmota/esptool/releases/download/v4.3/esptool-4.3.zip"
"version": "https://github.com/tasmota/esptool/releases/download/v4.3.1/esptool-4.3.1.zip"
},
"tool-openocd-esp32": {
"type": "debugger",
Expand Down
2 changes: 1 addition & 1 deletion platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _add_dynamic_options(self, board):

# debug tools
debug = board.manifest.get("debug", {})
non_debug_protocols = ["esptool", "espota", "mbctool"]
non_debug_protocols = ["esptool", "espota"]
supported_debug_tools = [
"cmsis-dap",
"esp-prog",
Expand Down

0 comments on commit eb79d2b

Please sign in to comment.