@typecad/framework-zephyr 1.0.0-alpha.11 → 1.0.0-alpha.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/display/index.d.ts +1 -1
  2. package/dist/display/index.js +1 -1
  3. package/dist/display/profiles.d.ts +33 -0
  4. package/dist/display/profiles.js +36 -0
  5. package/dist/display/touch-adapter.d.ts +3 -4
  6. package/dist/display/touch-adapter.js +119 -16
  7. package/dist/display/ui-adapter.d.ts +4 -0
  8. package/dist/display/ui-adapter.js +348 -139
  9. package/dist/dt-config/kconfig.d.ts +5 -1
  10. package/dist/dt-config/kconfig.js +22 -5
  11. package/dist/dt-config/overlay.d.ts +26 -2
  12. package/dist/dt-config/overlay.js +138 -27
  13. package/dist/framework.manifest.d.ts +29 -28
  14. package/dist/framework.manifest.js +9 -3
  15. package/dist/index.d.ts +1 -0
  16. package/dist/index.js +5 -0
  17. package/dist/lowering/ble.js +3 -1
  18. package/dist/lowering/gpio.js +7 -3
  19. package/dist/strategy.d.ts +24 -0
  20. package/dist/strategy.js +326 -134
  21. package/dist/toolchain/debug-config.d.ts +43 -2
  22. package/dist/toolchain/debug-config.js +129 -17
  23. package/dist/toolchain/index.d.ts +13 -0
  24. package/dist/toolchain/index.js +104 -23
  25. package/dist/toolchain/scaffold.js +40 -18
  26. package/dist/toolchain/west-discover.js +4 -1
  27. package/package.json +4 -4
  28. package/src/display/index.ts +1 -1
  29. package/src/display/profiles.ts +63 -0
  30. package/src/display/touch-adapter.ts +119 -15
  31. package/src/display/ui-adapter.ts +357 -139
  32. package/src/dt-config/kconfig.ts +26 -6
  33. package/src/dt-config/overlay.ts +450 -298
  34. package/src/framework.manifest.ts +9 -3
  35. package/src/index.ts +6 -0
  36. package/src/lowering/ble.ts +3 -1
  37. package/src/lowering/gpio.ts +7 -3
  38. package/src/strategy.ts +355 -136
  39. package/src/toolchain/debug-config.ts +137 -14
  40. package/src/toolchain/index.ts +107 -24
  41. package/src/toolchain/scaffold.ts +39 -16
  42. package/src/toolchain/west-discover.ts +4 -1
@@ -2,14 +2,23 @@
2
2
  // Zephyr UI display adapter for the Cuttlefish UI rendering pipeline.
3
3
  //
4
4
  // Bridges the in-tree CuttlefishGFX/CuttlefishCanvas16 class (emitted by the
5
- // runtime header's cuttlefish-gfx slice) to the ST7796S panel. The panel is
5
+ // runtime header's cuttlefish-gfx slice) to an SPI TFT panel. The panel is
6
6
  // driven DIRECTLY over the SPI controller with GPIO chip-select, DC and reset
7
7
  // pins — NOT through Zephyr's mipi-dbi-spi bridge: that bridge issues separate
8
8
  // SPI transactions for the command byte and its parameters (CS deasserts
9
- // between them), which scrambles this panel's command decoder and leaves it
10
- // white. Verified on hardware: the direct protocol (CS held low across the
11
- // command+data burst, DC toggled mid-burst — the Adafruit ST77xx protocol)
12
- // initializes the panel and renders pixels correctly.
9
+ // between them), which scrambles this panel family's command decoder and
10
+ // leaves it white. Verified on hardware (ST7796S): the direct protocol (CS
11
+ // held low across the command+data burst, DC toggled mid-burst — the Adafruit
12
+ // ST77xx protocol) initializes the panel and renders pixels correctly.
13
+ //
14
+ // Per-controller support lives in two places, keyed off the display profile's
15
+ // `controller` field (see profiles.ts):
16
+ // - the init command table (byte-for-byte Adafruit sequences)
17
+ // - the pixel wire format: ST7796S is driven in 18-bit (666) mode (its
18
+ // 16-bit channel routing is crossed on the verified clone panel), ILI9341
19
+ // in native 16-bit (565) big-endian. The ST7796S path below is frozen
20
+ // exactly as hardware-verified; the ILI9341 path mirrors it with the
21
+ // Adafruit ILI9341 init + 565 packing and is not yet hardware-tuned.
13
22
  //
14
23
  // This is the Zephyr analog of the Adafruit adapters in framework-arduino,
15
24
  // using the in-tree native GFX class (no #define CuttlefishCanvas16) driven
@@ -22,18 +31,33 @@
22
31
  // per-frame allocated); fillRect writes row-by-row. Pixel bursts use 16-bit
23
32
  // SPI words (MSB-first on the wire = RGB565 big-endian, no byte swap).
24
33
  // ---------------------------------------------------------------------------
25
- import { ZEPHYR_DISPLAY_PROFILES } from "./profiles.js";
34
+ import { ZEPHYR_DISPLAY_PROFILES, panelControllerFor } from "./profiles.js";
26
35
  export function zephyrUiDisplayAdapter(profile, readback = {}) {
27
36
  const w = profile.width;
28
37
  const h = profile.height;
29
38
  const maxDim = Math.max(w, h);
30
39
  const dtLabel = profile.dtLabel;
31
40
  const backlightAlias = profile.backlight;
41
+ const bus = profile.busLabel ?? 'spi2';
42
+ const bridge = profile.bridgeLabel ?? 'mipi_dbi';
43
+ const controller = panelControllerFor(profile);
44
+ const isIli9341 = controller === 'ili9341';
45
+ // Bytes per pixel on the wire: 3 (18-bit 666) for ST7796S, 2 (16-bit 565)
46
+ // for ILI9341. The row/block scratch buffers and pack loops key off this.
47
+ const bpp = isIli9341 ? 2 : 3;
48
+ const rowBuf = `__tc_display_row${bpp}`;
49
+ const blockBuf = `__tc_display_block${bpp}`;
50
+ const packFn = isIli9341 ? '__tc_pnl_pack565' : '__tc_pnl_pack666';
51
+ const pixelsFn = isIli9341 ? '__tc_pnl_pixels565' : '__tc_pnl_pixels666';
52
+ const wireTag = isIli9341 ? '16-bit 565' : '18-bit';
32
53
  // Never infer readback from a board's default pinmux. SDO/MISO may be left
33
54
  // floating or shared with another device, and ST7796S modules are known to
34
55
  // react badly to GSCAN reads. Both an explicit opt-in and an explicit MISO
35
56
  // pin are required before emitting an active synchronization path.
36
57
  const scanlineSync = readback.scanlineSync === true && readback.miso !== undefined;
58
+ // TE (hardware tearing-effect) sync: strictly opt-in via a configured GPIO.
59
+ // Preferred over GET_SCANLINE when wired — no readback traffic, no MISO.
60
+ const tePin = typeof readback.tearingEffectPin === 'number' ? readback.tearingEffectPin : undefined;
37
61
  const includes = [
38
62
  `// --- Zephyr UI display adapter (${profile.driver}) ---`,
39
63
  `// Native CuttlefishGFX path: do NOT #define CuttlefishCanvas16 so the`,
@@ -44,6 +68,40 @@ export function zephyrUiDisplayAdapter(profile, readback = {}) {
44
68
  `#include <zephyr/drivers/spi.h>`,
45
69
  `#include <zephyr/drivers/gpio.h>`,
46
70
  ].join("\n");
71
+ // Per-controller scratch-buffer declarations. The ST7796S text is frozen as
72
+ // hardware-verified; the ILI9341 variant documents its 565 wire format.
73
+ const bufferDecls = isIli9341
74
+ ? [
75
+ `// One-row scratch buffer in 16-bit (565) wire format: maxDim px x 2 bytes.`,
76
+ `// Reused across fillRect/draw calls — never per-frame (AGENTS.md: no`,
77
+ `// per-frame heap allocation). The ILI9341 is driven in its native`,
78
+ `// 16-bit COLMOD (0x55): RGB565 pixels go out big-endian (MSB-first SPI),`,
79
+ `// the Adafruit ILI9341 convention, with no repacking needed.`,
80
+ `static uint8_t ${rowBuf}[${maxDim} * 2];`,
81
+ `// Multi-row block buffer for solid fills (8 rows of maxDim px in 565).`,
82
+ `// fillRect fills this once with the color, then sends the whole rect in a`,
83
+ `// few large spi_write chunks instead of one spi_write per row — a full`,
84
+ `// 480x320 clear went from ~320 syscalls (~110ms) to ~40 (~15ms). Reused,`,
85
+ `// not per-frame (AGENTS.md).`,
86
+ `#define __TC_FILL_ROWS 8`,
87
+ `static uint8_t ${blockBuf}[${maxDim} * 2 * __TC_FILL_ROWS];`,
88
+ ]
89
+ : [
90
+ `// One-row scratch buffer in 18-bit (666) wire format: maxDim px x 3 bytes.`,
91
+ `// Reused across fillRect/draw calls — never per-frame (AGENTS.md: no`,
92
+ `// per-frame heap allocation). The panel is driven in 18-bit mode (COLMOD`,
93
+ `// 0x66): its 16-bit (565) channel routing is crossed (G/B swap, verified`,
94
+ `// with calibration bands), while 18-bit mode routes every channel`,
95
+ `// correctly with plain (R,G,B) byte order.`,
96
+ `static uint8_t ${rowBuf}[${maxDim} * 3];`,
97
+ `// Multi-row block buffer for solid fills (8 rows of maxDim px in 18-bit).`,
98
+ `// fillRect fills this once with the color, then sends the whole rect in a`,
99
+ `// few large spi_write chunks instead of one spi_write per row — a full`,
100
+ `// 480x320 clear went from ~320 syscalls (~110ms) to ~40 (~15ms). Reused,`,
101
+ `// not per-frame (AGENTS.md).`,
102
+ `#define __TC_FILL_ROWS 8`,
103
+ `static uint8_t ${blockBuf}[${maxDim} * 3 * __TC_FILL_ROWS];`,
104
+ ];
47
105
  const declaration = [
48
106
  `// CUTTLEFISH_DISPLAY_BEGIN`,
49
107
  // The display0 DT node carries frequency/dimensions for DT_PROP reads, but
@@ -52,20 +110,7 @@ export function zephyrUiDisplayAdapter(profile, readback = {}) {
52
110
  // allocates a tearing-effect GPIO interrupt that conflicts with the SPI/I2C
53
111
  // interrupts — the VECDESC_FL_SHARED assertion crash on the 3rd frame).
54
112
  `#define __tc_display_dev 1`,
55
- `// One-row scratch buffer in 18-bit (666) wire format: maxDim px x 3 bytes.`,
56
- `// Reused across fillRect/draw calls — never per-frame (AGENTS.md: no`,
57
- `// per-frame heap allocation). The panel is driven in 18-bit mode (COLMOD`,
58
- `// 0x66): its 16-bit (565) channel routing is crossed (G/B swap, verified`,
59
- `// with calibration bands), while 18-bit mode routes every channel`,
60
- `// correctly with plain (R,G,B) byte order.`,
61
- `static uint8_t __tc_display_row3[${maxDim} * 3];`,
62
- `// Multi-row block buffer for solid fills (8 rows of maxDim px in 18-bit).`,
63
- `// fillRect fills this once with the color, then sends the whole rect in a`,
64
- `// few large spi_write chunks instead of one spi_write per row — a full`,
65
- `// 480x320 clear went from ~320 syscalls (~110ms) to ~40 (~15ms). Reused,`,
66
- `// not per-frame (AGENTS.md).`,
67
- `#define __TC_FILL_ROWS 8`,
68
- `static uint8_t __tc_display_block3[${maxDim} * 3 * __TC_FILL_ROWS];`,
113
+ ...bufferDecls,
69
114
  `// startWrite/endWrite batching depth. When > 0 the panel CS is held asserted`,
70
115
  `// (low) across multiple primitives — DC still toggles mid-burst, but CS does`,
71
116
  `// not, matching the Adafruit ST77xx protocol and avoiding one full CS-toggle`,
@@ -76,6 +121,22 @@ export function zephyrUiDisplayAdapter(profile, readback = {}) {
76
121
  `// controller-specific validation are required; otherwise the display stays`,
77
122
  `// on the existing retained/composited path with no extra SPI reads.`,
78
123
  `static const bool __tc_pnl_scanline_sync = ${scanlineSync ? 'true' : 'false'};`,
124
+ `// Tearing-effect (TE) hardware sync: the panel pulses its TE line once`,
125
+ `// per frame. When te-gpios is present on the display DT node, panel`,
126
+ `// updates arm on the TE edge — tear-free writes with no MISO readback.`,
127
+ `#if DT_NODE_HAS_PROP(DT_NODELABEL(${dtLabel}), te_gpios)`,
128
+ `#define __TC_TE_SYNC 1`,
129
+ `static const struct gpio_dt_spec __tc_te =`,
130
+ ` GPIO_DT_SPEC_GET(DT_NODELABEL(${dtLabel}), te_gpios);`,
131
+ `static struct gpio_callback __tc_te_cb;`,
132
+ `static volatile uint32_t __tc_te_count = 0;`,
133
+ `static void __tc_te_isr(const struct device* port, struct gpio_callback* cb, uint32_t pins) {`,
134
+ ` (void)port; (void)cb; (void)pins;`,
135
+ ` __tc_te_count++;`,
136
+ `}`,
137
+ `#else`,
138
+ `#define __TC_TE_SYNC 0`,
139
+ `#endif`,
79
140
  `// Stashed address window from the last setAddrWindow call. The runtime`,
80
141
  `// calls setAddrWindow + writePixels as a matched pair, so we stash the rect`,
81
142
  `// here and consume it in writePixels.`,
@@ -92,9 +153,244 @@ export function zephyrUiDisplayAdapter(profile, readback = {}) {
92
153
  // with DT_HAS_ALIAS (the safe primitive for an alias that may be absent —
93
154
  // DT_NODE_HAS_STATUS(DT_ALIAS(...)) is version-dependent when the alias is
94
155
  // missing and can fail the build).
156
+ // TE pin: input + rising-edge interrupt (the ST7796 TE pulse), then tell
157
+ // the controller to drive the line (TEON 0x35, mode 1 = vertical sync only).
158
+ const teInit = tePin !== undefined ? `#if __TC_TE_SYNC
159
+ if (device_is_ready(__tc_te.port)) {
160
+ gpio_pin_configure_dt(&__tc_te, GPIO_INPUT);
161
+ gpio_init_callback(&__tc_te_cb, __tc_te_isr, BIT(__tc_te.pin));
162
+ (void)gpio_add_callback(__tc_te.port, &__tc_te_cb);
163
+ (void)gpio_pin_interrupt_configure_dt(&__tc_te, GPIO_INT_EDGE_RISING);
164
+ __tc_pnl_cmd1(0x35, 0x01); // TEON: TE output = vsync pulse
165
+ }
166
+ #endif` : '';
95
167
  const blInit = backlightAlias
96
168
  ? `#if DT_HAS_ALIAS(${backlightAlias})\n const struct gpio_dt_spec __bl = GPIO_DT_SPEC_GET(DT_ALIAS(${backlightAlias}), gpios);\n if (device_is_ready(__bl.port)) { gpio_pin_configure_dt(&__bl, GPIO_OUTPUT_ACTIVE); }\n#endif`
97
169
  : '';
170
+ // Per-controller pixel pack/stream helpers. Both share the row-chunked
171
+ // transport; only the per-pixel wire encoding differs.
172
+ const pixelHelpers = isIli9341
173
+ ? `
174
+ // Pack count rgb565 pixels into the row2 scratch buffer as big-endian 16-bit
175
+ // wire bytes (c>>8, c&0xFF) — the ILI9341's native 565 format under COLMOD
176
+ // 0x55. The caller then streams the buffer with the 8-bit config (one row at
177
+ // a time; the buffer holds maxDim pixels).
178
+ static void ${packFn}(const uint16_t* px, uint32_t count) {
179
+ for (uint32_t i = 0; i < count; i++) {
180
+ uint16_t c = px[i];
181
+ ${rowBuf}[i * 2] = static_cast<uint8_t>(c >> 8);
182
+ ${rowBuf}[i * 2 + 1] = static_cast<uint8_t>(c);
183
+ }
184
+ }
185
+
186
+ // Stream count rgb565 pixels to the panel (chunked through the row2 scratch).
187
+ // Caller holds the RAMWR burst.
188
+ static void ${pixelsFn}(const uint16_t* px, uint32_t count) {
189
+ while (count > 0) {
190
+ uint32_t __chunk = (count > ${maxDim}) ? ${maxDim} : count;
191
+ ${packFn}(px, __chunk);
192
+ struct spi_buf __bd = { ${rowBuf}, static_cast<size_t>(__chunk) * 2U };
193
+ struct spi_buf_set __sd = { &__bd, 1 };
194
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
195
+ px += __chunk;
196
+ count -= __chunk;
197
+ }
198
+ }
199
+ `
200
+ : `
201
+ // Pack count rgb565 pixels into the row3 scratch buffer as 18-bit (666) wire
202
+ // format: (r<<3, g<<2, b<<3) — R,G,B byte order, verified correct on this
203
+ // panel in 18-bit mode. The caller then streams the buffer with the 8-bit
204
+ // config (one row at a time; the buffer holds maxDim pixels).
205
+ static void ${packFn}(const uint16_t* px, uint32_t count) {
206
+ for (uint32_t i = 0; i < count; i++) {
207
+ uint16_t c = px[i];
208
+ ${rowBuf}[i * 3] = static_cast<uint8_t>((c >> 8) & 0xF8u);
209
+ ${rowBuf}[i * 3 + 1] = static_cast<uint8_t>((c >> 3) & 0xFCu);
210
+ ${rowBuf}[i * 3 + 2] = static_cast<uint8_t>((c << 3) & 0xF8u);
211
+ }
212
+ }
213
+
214
+ // Stream count rgb565 pixels to the panel (converted to 18-bit, chunked
215
+ // through the row3 scratch). Caller holds the RAMWR burst.
216
+ static void ${pixelsFn}(const uint16_t* px, uint32_t count) {
217
+ while (count > 0) {
218
+ uint32_t __chunk = (count > ${maxDim}) ? ${maxDim} : count;
219
+ ${packFn}(px, __chunk);
220
+ struct spi_buf __bd = { ${rowBuf}, static_cast<size_t>(__chunk) * 3U };
221
+ struct spi_buf_set __sd = { &__bd, 1 };
222
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
223
+ px += __chunk;
224
+ count -= __chunk;
225
+ }
226
+ }
227
+ `;
228
+ // Per-controller solid-fill. Both tile one built row into the block buffer
229
+ // and stream it in multi-row chunks; only the color encoding differs.
230
+ const fillRectFn = isIli9341
231
+ ? `
232
+ static void __tc_op_fillRect(void* /*ctx*/, int16_t x, int16_t y, int16_t rw, int16_t rh, uint16_t c) {
233
+ if (rw <= 0 || rh <= 0) return;
234
+ uint8_t __b0 = static_cast<uint8_t>(c >> 8);
235
+ uint8_t __b1 = static_cast<uint8_t>(c);
236
+ // Build one row, then tile it into the block buffer.
237
+ for (int16_t i = 0; i < rw; i++) {
238
+ ${rowBuf}[i * 2] = __b0;
239
+ ${rowBuf}[i * 2 + 1] = __b1;
240
+ }
241
+ size_t rowBytes = static_cast<size_t>(rw) * 2U;
242
+ for (int16_t r = 0; r < __TC_FILL_ROWS; r++) {
243
+ memcpy(&${blockBuf}[static_cast<size_t>(r) * rowBytes], ${rowBuf}, rowBytes);
244
+ }
245
+ __tc_pnl_set_window(x, y, rw, rh);
246
+ __tc_pnl_ramwr_begin();
247
+ int16_t remaining = rh;
248
+ while (remaining > 0) {
249
+ int16_t chunk = (remaining > __TC_FILL_ROWS) ? __TC_FILL_ROWS : remaining;
250
+ struct spi_buf __bd = { ${blockBuf}, static_cast<size_t>(chunk) * rowBytes };
251
+ struct spi_buf_set __sd = { &__bd, 1 };
252
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
253
+ remaining -= chunk;
254
+ }
255
+ __tc_pnl_ramwr_end();
256
+ }
257
+ `
258
+ : `
259
+ // Fill a rect row-by-row using the one-row 18-bit scratch buffer. This is the
260
+ // hot path for background clears and large fills; building the color into the
261
+ // reused buffer and writing each row keeps memory bounded.
262
+ // Fill a rect with a solid color. The 18-bit row is tiled into the block buffer
263
+ // (__TC_FILL_ROWS rows), then the whole rect is sent in multi-row spi_write
264
+ // chunks. A full 480x320 clear is ~40 writes instead of ~320, dropping it from
265
+ // ~110ms to ~15ms — the ESP32 SPI driver's per-transaction overhead (not SPI
266
+ // bandwidth) is the binding cost, so fewer/larger writes win. Scatter-gather
267
+ // descriptor lists tested slower (the driver walks each descriptor), so this
268
+ // uses one contiguous buffer per write.
269
+ static void __tc_op_fillRect(void* /*ctx*/, int16_t x, int16_t y, int16_t rw, int16_t rh, uint16_t c) {
270
+ if (rw <= 0 || rh <= 0) return;
271
+ uint8_t __b0 = static_cast<uint8_t>((c >> 8) & 0xF8u);
272
+ uint8_t __b1 = static_cast<uint8_t>((c >> 3) & 0xFCu);
273
+ uint8_t __b2 = static_cast<uint8_t>((c << 3) & 0xF8u);
274
+ // Build one 18-bit row, then tile it into the block buffer.
275
+ for (int16_t i = 0; i < rw; i++) {
276
+ ${rowBuf}[i * 3] = __b0;
277
+ ${rowBuf}[i * 3 + 1] = __b1;
278
+ ${rowBuf}[i * 3 + 2] = __b2;
279
+ }
280
+ size_t rowBytes = static_cast<size_t>(rw) * 3U;
281
+ for (int16_t r = 0; r < __TC_FILL_ROWS; r++) {
282
+ memcpy(&${blockBuf}[static_cast<size_t>(r) * rowBytes], ${rowBuf}, rowBytes);
283
+ }
284
+ __tc_pnl_set_window(x, y, rw, rh);
285
+ __tc_pnl_ramwr_begin();
286
+ int16_t remaining = rh;
287
+ while (remaining > 0) {
288
+ int16_t chunk = (remaining > __TC_FILL_ROWS) ? __TC_FILL_ROWS : remaining;
289
+ struct spi_buf __bd = { ${blockBuf}, static_cast<size_t>(chunk) * rowBytes };
290
+ struct spi_buf_set __sd = { &__bd, 1 };
291
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
292
+ remaining -= chunk;
293
+ }
294
+ __tc_pnl_ramwr_end();
295
+ }
296
+ `;
297
+ // Per-controller init table. Both are byte-for-byte Adafruit sequences
298
+ // emitted as (cmd, len, data, delay) records walked in display_init.
299
+ const initBlock = isIli9341
300
+ ? `
301
+ // ── Panel init ──────────────────────────────────────────────────────────
302
+ // Adafruit ILI9341 init sequence (initILI9341), byte for byte: SWRESET,
303
+ // manufacturer/power/gamma registers, MADCTL 0x28 (MV landscape + BGR, the
304
+ // same convention as the ST7796S path), COLMOD 0x55 (16-bit RGB565 — the
305
+ // native wire format of the pack565 transport), SLPOUT (150ms), DISPON
306
+ // (150ms), INVON. INVON is included because the common ILI9341 SPI modules
307
+ // (2.2"/2.4" TFTs) ship with an inverted panel; the in-tree binding's
308
+ // display-inversion property mirrors this for the stock driver.
309
+ struct __tc_pnl_init_cmd { uint8_t cmd; uint8_t len; const uint8_t* data; uint16_t delay_ms; };
310
+ static const uint8_t __tc_pnl_i1[] = {0x03, 0x80, 0x02};
311
+ static const uint8_t __tc_pnl_i2[] = {0x00, 0xC1, 0x30};
312
+ static const uint8_t __tc_pnl_i3[] = {0x64, 0x03, 0x12, 0x81};
313
+ static const uint8_t __tc_pnl_i4[] = {0x85, 0x00, 0x78};
314
+ static const uint8_t __tc_pnl_i5[] = {0x39, 0x2C, 0x00, 0x34, 0x02};
315
+ static const uint8_t __tc_pnl_i6[] = {0x20};
316
+ static const uint8_t __tc_pnl_i7[] = {0x00, 0x00};
317
+ static const uint8_t __tc_pnl_i8[] = {0x23};
318
+ static const uint8_t __tc_pnl_i9[] = {0x10};
319
+ static const uint8_t __tc_pnl_i10[] = {0x3E, 0x28};
320
+ static const uint8_t __tc_pnl_i11[] = {0x86};
321
+ static const uint8_t __tc_pnl_i12[] = {0x28};
322
+ static const uint8_t __tc_pnl_i13[] = {0x55};
323
+ static const uint8_t __tc_pnl_i14[] = {0x00, 0x18};
324
+ static const uint8_t __tc_pnl_i15[] = {0x08, 0x82, 0x27};
325
+ static const uint8_t __tc_pnl_i16[] = {0x00};
326
+ static const uint8_t __tc_pnl_i17[] = {0x01};
327
+ static const uint8_t __tc_pnl_i18[] = {0x0F, 0x31, 0x2B, 0x0C, 0x0E, 0x08, 0x4E, 0xF1, 0x37, 0x07, 0x10, 0x03, 0x0E, 0x09, 0x00};
328
+ static const uint8_t __tc_pnl_i19[] = {0x00, 0x0E, 0x14, 0x03, 0x11, 0x07, 0x31, 0xC1, 0x48, 0x08, 0x0F, 0x0C, 0x31, 0x36, 0x0F};
329
+ static const struct __tc_pnl_init_cmd __tc_pnl_init_seq[] = {
330
+ {0x01, 0, NULL, 150}, // SWRESET
331
+ {0xEF, 3, __tc_pnl_i1, 0},
332
+ {0xCF, 3, __tc_pnl_i2, 0},
333
+ {0xED, 4, __tc_pnl_i3, 0},
334
+ {0xE8, 3, __tc_pnl_i4, 0},
335
+ {0xCB, 5, __tc_pnl_i5, 0},
336
+ {0xF7, 1, __tc_pnl_i6, 0},
337
+ {0xEA, 2, __tc_pnl_i7, 0},
338
+ {0xC0, 1, __tc_pnl_i8, 0}, // PWCTRL1
339
+ {0xC1, 1, __tc_pnl_i9, 0}, // PWCTRL2
340
+ {0xC5, 2, __tc_pnl_i10, 0}, // VMCTRL1
341
+ {0xC7, 1, __tc_pnl_i11, 0}, // VMCTRL2
342
+ {0x36, 1, __tc_pnl_i12, 0}, // MADCTL 0x28: MV (landscape) + BGR=1
343
+ {0x3A, 1, __tc_pnl_i13, 0}, // COLMOD 0x55 (16-bit RGB565)
344
+ {0xB1, 2, __tc_pnl_i14, 0}, // FRMCTR1
345
+ {0xB6, 3, __tc_pnl_i15, 0}, // DISCTRL
346
+ {0xF2, 1, __tc_pnl_i16, 0}, // ENABLE3G off
347
+ {0x26, 1, __tc_pnl_i17, 0}, // GAMSET gamma curve 1
348
+ {0xE0, 15, __tc_pnl_i18, 0}, // PGAMCTRL
349
+ {0xE1, 15, __tc_pnl_i19, 0}, // NGAMCTRL
350
+ {0x11, 0, NULL, 150}, // SLPOUT (sleep out — 120ms typical)
351
+ {0x29, 0, NULL, 150}, // DISPON
352
+ {0x21, 0, NULL, 0}, // INVON (common ILI9341 modules ship inverted)
353
+ };
354
+ `
355
+ : `
356
+ // ── Panel init ──────────────────────────────────────────────────────────
357
+ // Adafruit ST7796S init sequence (demo-st lib fork), byte for byte: hw reset
358
+ // pulse, SWRESET, manufacturer unlock, VCOM/MADCTL/COLMOD/porch registers,
359
+ // lock, SLPOUT (150ms), DISPON (150ms), INVOFF. MADCTL 0x28 = MV (rotation 1
360
+ // landscape) + BGR=1. BGR=1 makes the controller route data R/B to the
361
+ // B/R subpixels (verified: red data shows blue with BGR=1), which combined
362
+ // with a lossless R/B data swap renders the UI correctly; BGR=0 leaves a
363
+ // half-lossy G/B quirk on this clone controller.
364
+ struct __tc_pnl_init_cmd { uint8_t cmd; uint8_t len; const uint8_t* data; uint16_t delay_ms; };
365
+ static const uint8_t __tc_pnl_i1[] = {0xC3};
366
+ static const uint8_t __tc_pnl_i2[] = {0x96};
367
+ static const uint8_t __tc_pnl_i3[] = {0x1C};
368
+ static const uint8_t __tc_pnl_i4[] = {0x28};
369
+ static const uint8_t __tc_pnl_i5[] = {0x66};
370
+ static const uint8_t __tc_pnl_i6[] = {0x80};
371
+ static const uint8_t __tc_pnl_i7[] = {0x00};
372
+ static const uint8_t __tc_pnl_i8[] = {0x80, 0x02, 0x3B};
373
+ static const uint8_t __tc_pnl_i9[] = {0xC6};
374
+ static const uint8_t __tc_pnl_i10[] = {0x69};
375
+ static const uint8_t __tc_pnl_i11[] = {0x3C};
376
+ static const struct __tc_pnl_init_cmd __tc_pnl_init_seq[] = {
377
+ {0x01, 0, NULL, 150}, // SWRESET
378
+ {0xF0, 1, __tc_pnl_i1, 0}, // unlock manufacturer
379
+ {0xF0, 1, __tc_pnl_i2, 0},
380
+ {0xC5, 1, __tc_pnl_i3, 0}, // VCOM control
381
+ {0x36, 1, __tc_pnl_i4, 0}, // MADCTL 0x28: MV (rotation 1) + BGR=1
382
+ {0x3A, 1, __tc_pnl_i5, 0}, // COLMOD 0x66 (18-bit, 262K) — clean channel routing
383
+ {0xB0, 1, __tc_pnl_i6, 0}, // interface control
384
+ {0xB4, 1, __tc_pnl_i7, 0}, // inversion control
385
+ {0xB6, 3, __tc_pnl_i8, 0}, // display function control
386
+ {0xB7, 1, __tc_pnl_i9, 0}, // entry mode
387
+ {0xF0, 1, __tc_pnl_i10, 0}, // lock manufacturer
388
+ {0xF0, 1, __tc_pnl_i11, 0},
389
+ {0x11, 0, NULL, 150}, // SLPOUT (sleep out — 120ms typical)
390
+ {0x29, 0, NULL, 150}, // DISPON
391
+ {0x20, 0, NULL, 0}, // INVOFF (non-inverted at power-on)
392
+ };
393
+ `;
98
394
  const functions = `
99
395
  // ── Direct panel transport ──────────────────────────────────────────────
100
396
  // GPIOs: CS/DC/RST driven manually; CS stays LOW for the whole command+data
@@ -102,11 +398,11 @@ export function zephyrUiDisplayAdapter(profile, readback = {}) {
102
398
  // Adafruit ST77xx protocol this panel requires. The SPI config carries no CS
103
399
  // (cs_is_gpio = false -> the ESP32 driver's hardware CSEL pin is left idle;
104
400
  // it is not connected to the panel).
105
- static const struct gpio_dt_spec __tc_pnl_cs = GPIO_DT_SPEC_GET(DT_NODELABEL(spi2), cs_gpios);
106
- static const struct gpio_dt_spec __tc_pnl_dc = GPIO_DT_SPEC_GET(DT_NODELABEL(mipi_dbi), dc_gpios);
107
- static const struct gpio_dt_spec __tc_pnl_rst = GPIO_DT_SPEC_GET(DT_NODELABEL(mipi_dbi), reset_gpios);
401
+ static const struct gpio_dt_spec __tc_pnl_cs = GPIO_DT_SPEC_GET(DT_NODELABEL(${bus}), cs_gpios);
402
+ static const struct gpio_dt_spec __tc_pnl_dc = GPIO_DT_SPEC_GET(DT_NODELABEL(${bridge}), dc_gpios);
403
+ static const struct gpio_dt_spec __tc_pnl_rst = GPIO_DT_SPEC_GET(DT_NODELABEL(${bridge}), reset_gpios);
108
404
 
109
- // 8-bit frames for commands/parameters and 18-bit (3 bytes/pixel) pixel data.
405
+ // 8-bit frames for commands/parameters and ${isIli9341 ? '16-bit (2 bytes/pixel)' : '18-bit (3 bytes/pixel)'} pixel data.
110
406
  static struct spi_config __tc_pnl_cfg8 = {
111
407
  .frequency = DT_PROP(DT_NODELABEL(${dtLabel}), mipi_max_frequency),
112
408
  .operation = SPI_OP_MODE_MASTER | SPI_WORD_SET(8),
@@ -129,12 +425,12 @@ static void __tc_pnl_cmd(uint8_t cmd, const uint8_t* data, uint16_t len) {
129
425
  struct spi_buf_set __sc = { &__bc, 1 };
130
426
  __tc_pnl_cs_assert();
131
427
  gpio_pin_set_dt(&__tc_pnl_dc, 0);
132
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sc);
428
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sc);
133
429
  if (len > 0) {
134
430
  struct spi_buf __bd = { const_cast<uint8_t*>(data), len };
135
431
  struct spi_buf_set __sd = { &__bd, 1 };
136
432
  gpio_pin_set_dt(&__tc_pnl_dc, 1);
137
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sd);
433
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
138
434
  }
139
435
  __tc_pnl_cs_release();
140
436
  }
@@ -146,7 +442,7 @@ static void __tc_pnl_ramwr_begin(void) {
146
442
  struct spi_buf_set __sc = { &__bc, 1 };
147
443
  __tc_pnl_cs_assert();
148
444
  gpio_pin_set_dt(&__tc_pnl_dc, 0);
149
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sc);
445
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sc);
150
446
  gpio_pin_set_dt(&__tc_pnl_dc, 1);
151
447
  }
152
448
 
@@ -169,11 +465,11 @@ static uint16_t __tc_pnl_read_scanline(void) {
169
465
  struct spi_buf_set __sr = { &__br, 1 };
170
466
  __tc_pnl_cs_assert();
171
467
  gpio_pin_set_dt(&__tc_pnl_dc, 0);
172
- int __cmd_err = spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sc);
468
+ int __cmd_err = spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sc);
173
469
  int __read_err = 0;
174
470
  if (__cmd_err == 0) {
175
471
  gpio_pin_set_dt(&__tc_pnl_dc, 1);
176
- __read_err = spi_transceive(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__st, &__sr);
472
+ __read_err = spi_transceive(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__st, &__sr);
177
473
  }
178
474
  __tc_pnl_cs_release();
179
475
  if (__cmd_err != 0 || __read_err != 0) return 0xFFFFu;
@@ -186,6 +482,19 @@ static uint16_t __tc_pnl_read_scanline(void) {
186
482
  // have no safe post-rectangle interval, so they retain the normal single-burst
187
483
  // behavior; the caller's framebuffer still prevents intermediate software frames.
188
484
  static void __tc_pnl_wait_for_safe_rect(int16_t y, int16_t rh) {
485
+ #if __TC_TE_SYNC
486
+ // TE variant: arm on the next frame pulse, then start the burst — the write
487
+ // chases the scan beam from the top of the rect. Bounded so a stuck TE line
488
+ // can never hang the UI loop.
489
+ if (rh < 8 || y < 0) return;
490
+ uint32_t __was = __tc_te_count;
491
+ uint32_t __deadline = k_uptime_get_32() + 25U;
492
+ while (__tc_te_count == __was) {
493
+ if (static_cast<int32_t>(k_uptime_get_32() - __deadline) >= 0) break;
494
+ k_msleep(0);
495
+ }
496
+ return;
497
+ #endif
189
498
  if (!__tc_pnl_scanline_sync || rh < 8 || y < 0) return;
190
499
  int16_t __last = static_cast<int16_t>(y + rh - 1);
191
500
  if (__last >= static_cast<int16_t>(${h} - 2)) return;
@@ -197,34 +506,7 @@ static void __tc_pnl_wait_for_safe_rect(int16_t y, int16_t rh) {
197
506
  k_msleep(0);
198
507
  }
199
508
  }
200
-
201
- // Pack count rgb565 pixels into the row3 scratch buffer as 18-bit (666) wire
202
- // format: (r<<3, g<<2, b<<3) — R,G,B byte order, verified correct on this
203
- // panel in 18-bit mode. The caller then streams the buffer with the 8-bit
204
- // config (one row at a time; the buffer holds maxDim pixels).
205
- static void __tc_pnl_pack666(const uint16_t* px, uint32_t count) {
206
- for (uint32_t i = 0; i < count; i++) {
207
- uint16_t c = px[i];
208
- __tc_display_row3[i * 3] = static_cast<uint8_t>((c >> 8) & 0xF8u);
209
- __tc_display_row3[i * 3 + 1] = static_cast<uint8_t>((c >> 3) & 0xFCu);
210
- __tc_display_row3[i * 3 + 2] = static_cast<uint8_t>((c << 3) & 0xF8u);
211
- }
212
- }
213
-
214
- // Stream count rgb565 pixels to the panel (converted to 18-bit, chunked
215
- // through the row3 scratch). Caller holds the RAMWR burst.
216
- static void __tc_pnl_pixels666(const uint16_t* px, uint32_t count) {
217
- while (count > 0) {
218
- uint32_t __chunk = (count > ${maxDim}) ? ${maxDim} : count;
219
- __tc_pnl_pack666(px, __chunk);
220
- struct spi_buf __bd = { __tc_display_row3, static_cast<size_t>(__chunk) * 3U };
221
- struct spi_buf_set __sd = { &__bd, 1 };
222
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sd);
223
- px += __chunk;
224
- count -= __chunk;
225
- }
226
- }
227
-
509
+ ${pixelHelpers}
228
510
  // Set the address window. Coordinates are in the effective (rotated) UI
229
511
  // space; the panel's MADCTL (rotation 1: MV) maps them onto the native
230
512
  // 320x480 raster, so CASET/RASET take the UI x/y ranges directly.
@@ -271,12 +553,12 @@ static void __tc_op_setAddrWindow(void* /*ctx*/, int16_t x, int16_t y, int16_t w
271
553
  // Push the stashed rect's worth of rgb565 pixels. Called right after
272
554
  // setAddrWindow with exactly (aw_w * aw_h) pixels. The caller's buffer is
273
555
  // never mutated (scroll canvases persist across frames), so pixels are
274
- // converted in chunks through the row3 scratch buffer.
556
+ // converted in chunks through the row${bpp} scratch buffer.
275
557
  static void __tc_op_writePixels(void* /*ctx*/, const uint16_t* px, uint32_t n) {
276
558
  if (n == 0U) return;
277
559
  __tc_pnl_set_window(__tc_aw_x, __tc_aw_y, __tc_aw_w, __tc_aw_h);
278
560
  __tc_pnl_ramwr_begin();
279
- __tc_pnl_pixels666(px, n);
561
+ ${pixelsFn}(px, n);
280
562
  __tc_pnl_ramwr_end();
281
563
  }
282
564
 
@@ -285,48 +567,10 @@ static void __tc_op_writePixel(void* /*ctx*/, int16_t x, int16_t y, uint16_t c)
285
567
  uint16_t __c = c;
286
568
  __tc_pnl_set_window(x, y, 1, 1);
287
569
  __tc_pnl_ramwr_begin();
288
- __tc_pnl_pixels666(&__c, 1);
570
+ ${pixelsFn}(&__c, 1);
289
571
  __tc_pnl_ramwr_end();
290
572
  }
291
-
292
- // Fill a rect row-by-row using the one-row 18-bit scratch buffer. This is the
293
- // hot path for background clears and large fills; building the color into the
294
- // reused buffer and writing each row keeps memory bounded.
295
- // Fill a rect with a solid color. The 18-bit row is tiled into the block buffer
296
- // (__TC_FILL_ROWS rows), then the whole rect is sent in multi-row spi_write
297
- // chunks. A full 480x320 clear is ~40 writes instead of ~320, dropping it from
298
- // ~110ms to ~15ms — the ESP32 SPI driver's per-transaction overhead (not SPI
299
- // bandwidth) is the binding cost, so fewer/larger writes win. Scatter-gather
300
- // descriptor lists tested slower (the driver walks each descriptor), so this
301
- // uses one contiguous buffer per write.
302
- static void __tc_op_fillRect(void* /*ctx*/, int16_t x, int16_t y, int16_t rw, int16_t rh, uint16_t c) {
303
- if (rw <= 0 || rh <= 0) return;
304
- uint8_t __b0 = static_cast<uint8_t>((c >> 8) & 0xF8u);
305
- uint8_t __b1 = static_cast<uint8_t>((c >> 3) & 0xFCu);
306
- uint8_t __b2 = static_cast<uint8_t>((c << 3) & 0xF8u);
307
- // Build one 18-bit row, then tile it into the block buffer.
308
- for (int16_t i = 0; i < rw; i++) {
309
- __tc_display_row3[i * 3] = __b0;
310
- __tc_display_row3[i * 3 + 1] = __b1;
311
- __tc_display_row3[i * 3 + 2] = __b2;
312
- }
313
- size_t rowBytes = static_cast<size_t>(rw) * 3U;
314
- for (int16_t r = 0; r < __TC_FILL_ROWS; r++) {
315
- memcpy(&__tc_display_block3[static_cast<size_t>(r) * rowBytes], __tc_display_row3, rowBytes);
316
- }
317
- __tc_pnl_set_window(x, y, rw, rh);
318
- __tc_pnl_ramwr_begin();
319
- int16_t remaining = rh;
320
- while (remaining > 0) {
321
- int16_t chunk = (remaining > __TC_FILL_ROWS) ? __TC_FILL_ROWS : remaining;
322
- struct spi_buf __bd = { __tc_display_block3, static_cast<size_t>(chunk) * rowBytes };
323
- struct spi_buf_set __sd = { &__bd, 1 };
324
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sd);
325
- remaining -= chunk;
326
- }
327
- __tc_pnl_ramwr_end();
328
- }
329
-
573
+ ${fillRectFn}
330
574
  static int16_t __tc_op_width(void* /*ctx*/) { return ${w}; }
331
575
  static int16_t __tc_op_height(void* /*ctx*/) { return ${h}; }
332
576
 
@@ -348,48 +592,12 @@ const CuttlefishPanelOps __tc_display_ops = {
348
592
 
349
593
  // The live display target: a CuttlefishGFX driven by the panel-ops vtable.
350
594
  CuttlefishGFX __tc_display(&__tc_display_ops, nullptr);
351
-
352
- // ── Panel init ──────────────────────────────────────────────────────────
353
- // Adafruit ST7796S init sequence (demo-st lib fork), byte for byte: hw reset
354
- // pulse, SWRESET, manufacturer unlock, VCOM/MADCTL/COLMOD/porch registers,
355
- // lock, SLPOUT (150ms), DISPON (150ms), INVOFF. MADCTL 0x28 = MV (rotation 1
356
- // landscape) + BGR=1. BGR=1 makes the controller route data R/B to the
357
- // B/R subpixels (verified: red data shows blue with BGR=1), which combined
358
- // with a lossless R/B data swap renders the UI correctly; BGR=0 leaves a
359
- // half-lossy G/B quirk on this clone controller.
360
- struct __tc_pnl_init_cmd { uint8_t cmd; uint8_t len; const uint8_t* data; uint16_t delay_ms; };
361
- static const uint8_t __tc_pnl_i1[] = {0xC3};
362
- static const uint8_t __tc_pnl_i2[] = {0x96};
363
- static const uint8_t __tc_pnl_i3[] = {0x1C};
364
- static const uint8_t __tc_pnl_i4[] = {0x28};
365
- static const uint8_t __tc_pnl_i5[] = {0x66};
366
- static const uint8_t __tc_pnl_i6[] = {0x80};
367
- static const uint8_t __tc_pnl_i7[] = {0x00};
368
- static const uint8_t __tc_pnl_i8[] = {0x80, 0x02, 0x3B};
369
- static const uint8_t __tc_pnl_i9[] = {0xC6};
370
- static const uint8_t __tc_pnl_i10[] = {0x69};
371
- static const uint8_t __tc_pnl_i11[] = {0x3C};
372
- static const struct __tc_pnl_init_cmd __tc_pnl_init_seq[] = {
373
- {0x01, 0, NULL, 150}, // SWRESET
374
- {0xF0, 1, __tc_pnl_i1, 0}, // unlock manufacturer
375
- {0xF0, 1, __tc_pnl_i2, 0},
376
- {0xC5, 1, __tc_pnl_i3, 0}, // VCOM control
377
- {0x36, 1, __tc_pnl_i4, 0}, // MADCTL 0x28: MV (rotation 1) + BGR=1
378
- {0x3A, 1, __tc_pnl_i5, 0}, // COLMOD 0x66 (18-bit, 262K) — clean channel routing
379
- {0xB0, 1, __tc_pnl_i6, 0}, // interface control
380
- {0xB4, 1, __tc_pnl_i7, 0}, // inversion control
381
- {0xB6, 3, __tc_pnl_i8, 0}, // display function control
382
- {0xB7, 1, __tc_pnl_i9, 0}, // entry mode
383
- {0xF0, 1, __tc_pnl_i10, 0}, // lock manufacturer
384
- {0xF0, 1, __tc_pnl_i11, 0},
385
- {0x11, 0, NULL, 150}, // SLPOUT (sleep out — 120ms typical)
386
- {0x29, 0, NULL, 150}, // DISPON
387
- {0x20, 0, NULL, 0}, // INVOFF (non-inverted at power-on)
388
- };
389
-
595
+ ${initBlock}
390
596
  // ── display_init (called from setup) ────────────────────────────────────
597
+
391
598
  static inline void display_init() {
392
599
  printk("TC_DISPLAY: device ready\\n");
600
+ ${teInit}
393
601
  ${blInit}
394
602
  gpio_pin_configure_dt(&__tc_pnl_cs, GPIO_OUTPUT);
395
603
  gpio_pin_configure_dt(&__tc_pnl_dc, GPIO_OUTPUT);
@@ -406,7 +614,7 @@ ${blInit}
406
614
  if (__tc_pnl_init_seq[i].delay_ms > 0) k_msleep(__tc_pnl_init_seq[i].delay_ms);
407
615
  }
408
616
  __tc_op_fillRect(nullptr, 0, 0, ${w}, ${h}, 0x0000);
409
- printk("TC_DISPLAY: direct init done (18-bit, black fill)\\n");
617
+ printk("TC_DISPLAY: direct init done (${wireTag}, black fill)\\n");
410
618
  }
411
619
 
412
620
  static inline void display_fillScreen(UI_COLOR_T color) {
@@ -536,5 +744,6 @@ export const zephyrDisplayAdapterGenerator = (display) => {
536
744
  return zephyrUiDisplayAdapter(profile, {
537
745
  scanlineSync: display.scanlineSync,
538
746
  miso: display.spiPins?.miso,
747
+ tearingEffectPin: display.tearingEffectPin,
539
748
  });
540
749
  };
@@ -16,8 +16,12 @@ export interface KconfigUsage {
16
16
  usesMqtt?: boolean;
17
17
  usesPreferences?: boolean;
18
18
  usesRandom?: boolean;
19
- /** Touch controller referenced (UI touch adapter emits DT_NODELABEL(ft6336u)). */
19
+ /** Touch controller referenced (UI touch adapter emits DT_NODELABEL(ft6336u)
20
+ * or DT_NODELABEL(xpt2046)). Selects the bus driver the node needs. */
20
21
  usesTouch?: boolean;
22
+ /** Which touch controller the program uses — FT6336U rides I2C, XPT2046
23
+ * rides the display's SPI bus. Only meaningful with usesTouch. */
24
+ touchController?: 'ft6336u' | 'xpt2046';
21
25
  /** PSRAM type ('opi' | 'quad') when the target board has PSRAM. Emits the
22
26
  * CONFIG_SPIRAM symbols so the ESP heap serves PSRAM for canvas allocations. */
23
27
  psram?: 'opi' | 'quad';