mirror of
https://github.com/meshcore-dev/flasher.meshcore.dev.git
synced 2026-04-20 22:13:50 +00:00
added new config entry for firmware and image for lilyfo t5 pro; nrf flasher debug now displays only length of the frame instead of full data
This commit is contained in:
parent
e46c451746
commit
c548c898f3
4 changed files with 24 additions and 2 deletions
22
config.json
22
config.json
|
|
@ -71,6 +71,28 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Lilygo T5 E-Paper S3 Pro",
|
||||||
|
"tooltip": "<img class='device' src='/img/lilygo_t5_pro.png'>",
|
||||||
|
"type": "esp32",
|
||||||
|
"firmware": [
|
||||||
|
{
|
||||||
|
"role": "gui",
|
||||||
|
"files": [
|
||||||
|
{
|
||||||
|
"type": "flash",
|
||||||
|
"name": "RippleUltra-T5-epaper-v6.0-beta21-merged.bin",
|
||||||
|
"title": "Combined app+partition+bootloader firmware bin"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "download",
|
||||||
|
"name": "RippleUltra-T5-epaper-v6.0-beta21.bin",
|
||||||
|
"title": "App firmware bin (use with m5 booloader)"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Lilygo T3 S3",
|
"name": "Lilygo T3 S3",
|
||||||
"type": "esp32",
|
"type": "esp32",
|
||||||
|
|
|
||||||
|
|
@ -356,7 +356,7 @@ const template = `
|
||||||
<button class="transparent" @click="openSerialCon()">
|
<button class="transparent" @click="openSerialCon()">
|
||||||
<i>terminal</i>
|
<i>terminal</i>
|
||||||
<span>Console</span>
|
<span>Console</span>
|
||||||
<div class="tooltip left max">Open serial console to manage Routers and Room servers via serial terminal</div>
|
<div class="tooltip left max">Open serial console to manage Routers and Room servers</div>
|
||||||
</button>
|
</button>
|
||||||
</nav>
|
</nav>
|
||||||
<nav class="no-margin">
|
<nav class="no-margin">
|
||||||
|
|
|
||||||
BIN
img/lilygo_t5_pro.png
Normal file
BIN
img/lilygo_t5_pro.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 47 KiB |
|
|
@ -136,7 +136,7 @@ export class Dfu {
|
||||||
const writer = this.port.writable.getWriter();
|
const writer = this.port.writable.getWriter();
|
||||||
try {
|
try {
|
||||||
await writer.write(pkt.data);
|
await writer.write(pkt.data);
|
||||||
console.debug("Sent packet:", pkt.data);
|
console.debug("Sent packet:", pkt.data.length);
|
||||||
} finally {
|
} finally {
|
||||||
writer.releaseLock();
|
writer.releaseLock();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue