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:
Rastislav Vysoky 2025-02-25 10:54:04 +01:00
parent e46c451746
commit c548c898f3
4 changed files with 24 additions and 2 deletions

View file

@ -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",
"type": "esp32",

View file

@ -356,7 +356,7 @@ const template = `
<button class="transparent" @click="openSerialCon()">
<i>terminal</i>
<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>
</nav>
<nav class="no-margin">

BIN
img/lilygo_t5_pro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View file

@ -136,7 +136,7 @@ export class Dfu {
const writer = this.port.writable.getWriter();
try {
await writer.write(pkt.data);
console.debug("Sent packet:", pkt.data);
console.debug("Sent packet:", pkt.data.length);
} finally {
writer.releaseLock();
}