-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
165 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
************** | ||
Device Flasher | ||
************** | ||
|
||
.. raw:: html | ||
|
||
<embed> | ||
<script | ||
type="module" | ||
src="https://unpkg.com/esp-web-tools@10/dist/web/install-button.js?module" | ||
></script> | ||
|
||
<esp-web-install-button manifest="/_static/device_manifests/manifest-tbd-dada.json"> | ||
<button slot="activate">Flash TBD dada</button> | ||
<span slot="unsupported">error: unsupported browser</span> | ||
<span slot="not-allowed">error: permission denied</span> | ||
</esp-web-install-button> | ||
|
||
<esp-web-install-button manifest="/_static/device_manifests/manifest-tbd-bba2.json"> | ||
<button slot="activate">Flash TBD BBA 2</button> | ||
<span slot="unsupported">error: unsupported browser</span> | ||
<span slot="not-allowed">error: permission denied</span> | ||
</esp-web-install-button> | ||
|
||
<esp-web-install-button manifest="/_static/device_manifests/manifest-tbd-bba1.json"> | ||
<button slot="activate">Flash TBD BBA 1</button> | ||
<span slot="unsupported">error: unsupported browser</span> | ||
<span slot="not-allowed">error: permission denied</span> | ||
</esp-web-install-button> | ||
|
||
<esp-web-install-button manifest="/_static/device_manifests/manifest-tbd-mk2.json"> | ||
<button slot="activate">Flash TBD MK 2</button> | ||
<span slot="unsupported">error: unsupported browser</span> | ||
<span slot="not-allowed">error: permission denied</span> | ||
</esp-web-install-button> | ||
|
||
<esp-web-install-button manifest="/_static/device_manifests/manifest-tbd-aem.json"> | ||
<button slot="activate">Flash TBD AEM</button> | ||
<span slot="unsupported">error: unsupported browser</span> | ||
<span slot="not-allowed">error: permission denied</span> | ||
</esp-web-install-button> | ||
|
||
<esp-web-install-button manifest="/_static/device_manifests/manifest-tbd-str.json"> | ||
<button slot="activate">Flash TBD Strämpler</button> | ||
<span slot="unsupported">error: unsupported browser</span> | ||
<span slot="not-allowed">error: permission denied</span> | ||
</esp-web-install-button> | ||
|
||
<esp-web-install-button manifest="/_static/device_manifests/manifest-tbd-v2.json"> | ||
<button slot="activate">Flash TBD v2</button> | ||
<span slot="unsupported">error: unsupported browser</span> | ||
<span slot="not-allowed">error: permission denied</span> | ||
</esp-web-install-button> | ||
|
||
<esp-web-install-button manifest="/_static/device_manifests/manifest-tbd-v1.json"> | ||
<button slot="activate">Flash TBD v1</button> | ||
<span slot="unsupported">error: unsupported browser</span> | ||
<span slot="not-allowed">error: permission denied</span> | ||
</esp-web-install-button> | ||
</embed> |
13 changes: 13 additions & 0 deletions
13
docs/get_started/_static/device_manifests/manifest-tbd-aem.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "tbd-aem", | ||
"version": "v2 alpha 1", | ||
"new_install_prompt_erase": false, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32", | ||
"parts": [ | ||
{ "path": "https://ctag-fh-kiel.github.io/ctag-tbd/downloads/tbd-aem-flash.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
docs/get_started/_static/device_manifests/manifest-tbd-bba1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "tbd-bba1", | ||
"version": "v2 alpha 1", | ||
"new_install_prompt_erase": false, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32-S3", | ||
"parts": [ | ||
{ "path": "https://ctag-fh-kiel.github.io/ctag-tbd/downloads/tbd-bba1-flash.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
docs/get_started/_static/device_manifests/manifest-tbd-bba2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "tbd-bba2", | ||
"version": "v2 alpha 1", | ||
"new_install_prompt_erase": false, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32-S3", | ||
"parts": [ | ||
{ "path": "https://ctag-fh-kiel.github.io/ctag-tbd/downloads/tbd-bba2-flash.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
docs/get_started/_static/device_manifests/manifest-tbd-dada.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "tbd-dada", | ||
"version": "v2 alpha 1", | ||
"new_install_prompt_erase": false, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32-S3", | ||
"parts": [ | ||
{ "path": "https://ctag-fh-kiel.github.io/ctag-tbd/downloads/tbd-dada-flash.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
docs/get_started/_static/device_manifests/manifest-tbd-mk2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "tbd-mk2", | ||
"version": "v2 alpha 1", | ||
"new_install_prompt_erase": false, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32", | ||
"parts": [ | ||
{ "path": "https://ctag-fh-kiel.github.io/ctag-tbd/downloads/tbd-mk2-flash.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
docs/get_started/_static/device_manifests/manifest-tbd-str.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "tbd-str", | ||
"version": "v2 alpha 1", | ||
"new_install_prompt_erase": false, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32", | ||
"parts": [ | ||
{ "path": "https://ctag-fh-kiel.github.io/ctag-tbd/downloads/tbd-str-flash.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
docs/get_started/_static/device_manifests/manifest-tbd-v1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "tbd-v1", | ||
"version": "v2 alpha 1", | ||
"new_install_prompt_erase": false, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32", | ||
"parts": [ | ||
{ "path": "https://ctag-fh-kiel.github.io/ctag-tbd/downloads/tbd-v1-flash.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
docs/get_started/_static/device_manifests/manifest-tbd-v2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "tbd-v2", | ||
"version": "v2 alpha 1", | ||
"new_install_prompt_erase": false, | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32", | ||
"parts": [ | ||
{ "path": "https://ctag-fh-kiel.github.io/ctag-tbd/downloads/tbd-v2-flash.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |