(v)
| 2419 | } |
| 2420 | |
| 2421 | function uint16ToHexWord(v) { |
| 2422 | return "0x" + (v & 0xffff).toString(16).padStart(4, "0").toUpperCase(); |
| 2423 | } |
| 2424 | |
| 2425 | async function exportAllIconsViaServer(mode) { |
| 2426 | const label = mode === "tft_rgb565" ? "TFT RGB565" : "U8g2 XBM"; |
no outgoing calls
no test coverage detected