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

@ -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();
}