@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
@@ -24,7 +33,7 @@
24
33
  // ---------------------------------------------------------------------------
25
34
 
26
35
  import type { DisplayAdapterCode, DisplayAdapterGenerator } from "@typecad/cuttlefish/api/shared";
27
- import { ZEPHYR_DISPLAY_PROFILES } from "./profiles.js";
36
+ import { ZEPHYR_DISPLAY_PROFILES, panelControllerFor } from "./profiles.js";
28
37
  import type { ZephyrDisplayProfile } from "./profiles.js";
29
38
 
30
39
  /**
@@ -37,6 +46,10 @@ export interface ZephyrDisplayReadbackOptions {
37
46
  scanlineSync?: boolean;
38
47
  /** MISO/SDO GPIO; readback is disabled when it is not explicitly wired. */
39
48
  miso?: number;
49
+ /** Tearing-effect GPIO (panel TE output). When set, panel updates wait for
50
+ * the TE frame pulse instead of GET_SCANLINE readback — no MISO required.
51
+ * The overlay adds te-gpios to the display DT node from this. */
52
+ tearingEffectPin?: number;
40
53
  }
41
54
 
42
55
  export function zephyrUiDisplayAdapter(
@@ -48,11 +61,26 @@ export function zephyrUiDisplayAdapter(
48
61
  const maxDim = Math.max(w, h);
49
62
  const dtLabel = profile.dtLabel;
50
63
  const backlightAlias = profile.backlight;
64
+ const bus = profile.busLabel ?? 'spi2';
65
+ const bridge = profile.bridgeLabel ?? 'mipi_dbi';
66
+ const controller = panelControllerFor(profile);
67
+ const isIli9341 = controller === 'ili9341';
68
+ // Bytes per pixel on the wire: 3 (18-bit 666) for ST7796S, 2 (16-bit 565)
69
+ // for ILI9341. The row/block scratch buffers and pack loops key off this.
70
+ const bpp = isIli9341 ? 2 : 3;
71
+ const rowBuf = `__tc_display_row${bpp}`;
72
+ const blockBuf = `__tc_display_block${bpp}`;
73
+ const packFn = isIli9341 ? '__tc_pnl_pack565' : '__tc_pnl_pack666';
74
+ const pixelsFn = isIli9341 ? '__tc_pnl_pixels565' : '__tc_pnl_pixels666';
75
+ const wireTag = isIli9341 ? '16-bit 565' : '18-bit';
51
76
  // Never infer readback from a board's default pinmux. SDO/MISO may be left
52
77
  // floating or shared with another device, and ST7796S modules are known to
53
78
  // react badly to GSCAN reads. Both an explicit opt-in and an explicit MISO
54
79
  // pin are required before emitting an active synchronization path.
55
80
  const scanlineSync = readback.scanlineSync === true && readback.miso !== undefined;
81
+ // TE (hardware tearing-effect) sync: strictly opt-in via a configured GPIO.
82
+ // Preferred over GET_SCANLINE when wired — no readback traffic, no MISO.
83
+ const tePin = typeof readback.tearingEffectPin === 'number' ? readback.tearingEffectPin : undefined;
56
84
 
57
85
  const includes = [
58
86
  `// --- Zephyr UI display adapter (${profile.driver}) ---`,
@@ -65,6 +93,41 @@ export function zephyrUiDisplayAdapter(
65
93
  `#include <zephyr/drivers/gpio.h>`,
66
94
  ].join("\n");
67
95
 
96
+ // Per-controller scratch-buffer declarations. The ST7796S text is frozen as
97
+ // hardware-verified; the ILI9341 variant documents its 565 wire format.
98
+ const bufferDecls = isIli9341
99
+ ? [
100
+ `// One-row scratch buffer in 16-bit (565) wire format: maxDim px x 2 bytes.`,
101
+ `// Reused across fillRect/draw calls — never per-frame (AGENTS.md: no`,
102
+ `// per-frame heap allocation). The ILI9341 is driven in its native`,
103
+ `// 16-bit COLMOD (0x55): RGB565 pixels go out big-endian (MSB-first SPI),`,
104
+ `// the Adafruit ILI9341 convention, with no repacking needed.`,
105
+ `static uint8_t ${rowBuf}[${maxDim} * 2];`,
106
+ `// Multi-row block buffer for solid fills (8 rows of maxDim px in 565).`,
107
+ `// fillRect fills this once with the color, then sends the whole rect in a`,
108
+ `// few large spi_write chunks instead of one spi_write per row — a full`,
109
+ `// 480x320 clear went from ~320 syscalls (~110ms) to ~40 (~15ms). Reused,`,
110
+ `// not per-frame (AGENTS.md).`,
111
+ `#define __TC_FILL_ROWS 8`,
112
+ `static uint8_t ${blockBuf}[${maxDim} * 2 * __TC_FILL_ROWS];`,
113
+ ]
114
+ : [
115
+ `// One-row scratch buffer in 18-bit (666) wire format: maxDim px x 3 bytes.`,
116
+ `// Reused across fillRect/draw calls — never per-frame (AGENTS.md: no`,
117
+ `// per-frame heap allocation). The panel is driven in 18-bit mode (COLMOD`,
118
+ `// 0x66): its 16-bit (565) channel routing is crossed (G/B swap, verified`,
119
+ `// with calibration bands), while 18-bit mode routes every channel`,
120
+ `// correctly with plain (R,G,B) byte order.`,
121
+ `static uint8_t ${rowBuf}[${maxDim} * 3];`,
122
+ `// Multi-row block buffer for solid fills (8 rows of maxDim px in 18-bit).`,
123
+ `// fillRect fills this once with the color, then sends the whole rect in a`,
124
+ `// few large spi_write chunks instead of one spi_write per row — a full`,
125
+ `// 480x320 clear went from ~320 syscalls (~110ms) to ~40 (~15ms). Reused,`,
126
+ `// not per-frame (AGENTS.md).`,
127
+ `#define __TC_FILL_ROWS 8`,
128
+ `static uint8_t ${blockBuf}[${maxDim} * 3 * __TC_FILL_ROWS];`,
129
+ ];
130
+
68
131
  const declaration = [
69
132
  `// CUTTLEFISH_DISPLAY_BEGIN`,
70
133
  // The display0 DT node carries frequency/dimensions for DT_PROP reads, but
@@ -73,20 +136,7 @@ export function zephyrUiDisplayAdapter(
73
136
  // allocates a tearing-effect GPIO interrupt that conflicts with the SPI/I2C
74
137
  // interrupts — the VECDESC_FL_SHARED assertion crash on the 3rd frame).
75
138
  `#define __tc_display_dev 1`,
76
- `// One-row scratch buffer in 18-bit (666) wire format: maxDim px x 3 bytes.`,
77
- `// Reused across fillRect/draw calls — never per-frame (AGENTS.md: no`,
78
- `// per-frame heap allocation). The panel is driven in 18-bit mode (COLMOD`,
79
- `// 0x66): its 16-bit (565) channel routing is crossed (G/B swap, verified`,
80
- `// with calibration bands), while 18-bit mode routes every channel`,
81
- `// correctly with plain (R,G,B) byte order.`,
82
- `static uint8_t __tc_display_row3[${maxDim} * 3];`,
83
- `// Multi-row block buffer for solid fills (8 rows of maxDim px in 18-bit).`,
84
- `// fillRect fills this once with the color, then sends the whole rect in a`,
85
- `// few large spi_write chunks instead of one spi_write per row — a full`,
86
- `// 480x320 clear went from ~320 syscalls (~110ms) to ~40 (~15ms). Reused,`,
87
- `// not per-frame (AGENTS.md).`,
88
- `#define __TC_FILL_ROWS 8`,
89
- `static uint8_t __tc_display_block3[${maxDim} * 3 * __TC_FILL_ROWS];`,
139
+ ...bufferDecls,
90
140
  `// startWrite/endWrite batching depth. When > 0 the panel CS is held asserted`,
91
141
  `// (low) across multiple primitives — DC still toggles mid-burst, but CS does`,
92
142
  `// not, matching the Adafruit ST77xx protocol and avoiding one full CS-toggle`,
@@ -97,6 +147,22 @@ export function zephyrUiDisplayAdapter(
97
147
  `// controller-specific validation are required; otherwise the display stays`,
98
148
  `// on the existing retained/composited path with no extra SPI reads.`,
99
149
  `static const bool __tc_pnl_scanline_sync = ${scanlineSync ? 'true' : 'false'};`,
150
+ `// Tearing-effect (TE) hardware sync: the panel pulses its TE line once`,
151
+ `// per frame. When te-gpios is present on the display DT node, panel`,
152
+ `// updates arm on the TE edge — tear-free writes with no MISO readback.`,
153
+ `#if DT_NODE_HAS_PROP(DT_NODELABEL(${dtLabel}), te_gpios)`,
154
+ `#define __TC_TE_SYNC 1`,
155
+ `static const struct gpio_dt_spec __tc_te =`,
156
+ ` GPIO_DT_SPEC_GET(DT_NODELABEL(${dtLabel}), te_gpios);`,
157
+ `static struct gpio_callback __tc_te_cb;`,
158
+ `static volatile uint32_t __tc_te_count = 0;`,
159
+ `static void __tc_te_isr(const struct device* port, struct gpio_callback* cb, uint32_t pins) {`,
160
+ ` (void)port; (void)cb; (void)pins;`,
161
+ ` __tc_te_count++;`,
162
+ `}`,
163
+ `#else`,
164
+ `#define __TC_TE_SYNC 0`,
165
+ `#endif`,
100
166
  `// Stashed address window from the last setAddrWindow call. The runtime`,
101
167
  `// calls setAddrWindow + writePixels as a matched pair, so we stash the rect`,
102
168
  `// here and consume it in writePixels.`,
@@ -114,10 +180,249 @@ export function zephyrUiDisplayAdapter(
114
180
  // with DT_HAS_ALIAS (the safe primitive for an alias that may be absent —
115
181
  // DT_NODE_HAS_STATUS(DT_ALIAS(...)) is version-dependent when the alias is
116
182
  // missing and can fail the build).
183
+ // TE pin: input + rising-edge interrupt (the ST7796 TE pulse), then tell
184
+ // the controller to drive the line (TEON 0x35, mode 1 = vertical sync only).
185
+ const teInit = tePin !== undefined ? `#if __TC_TE_SYNC
186
+ if (device_is_ready(__tc_te.port)) {
187
+ gpio_pin_configure_dt(&__tc_te, GPIO_INPUT);
188
+ gpio_init_callback(&__tc_te_cb, __tc_te_isr, BIT(__tc_te.pin));
189
+ (void)gpio_add_callback(__tc_te.port, &__tc_te_cb);
190
+ (void)gpio_pin_interrupt_configure_dt(&__tc_te, GPIO_INT_EDGE_RISING);
191
+ __tc_pnl_cmd1(0x35, 0x01); // TEON: TE output = vsync pulse
192
+ }
193
+ #endif` : '';
194
+
117
195
  const blInit = backlightAlias
118
196
  ? `#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`
119
197
  : '';
120
198
 
199
+ // Per-controller pixel pack/stream helpers. Both share the row-chunked
200
+ // transport; only the per-pixel wire encoding differs.
201
+ const pixelHelpers = isIli9341
202
+ ? `
203
+ // Pack count rgb565 pixels into the row2 scratch buffer as big-endian 16-bit
204
+ // wire bytes (c>>8, c&0xFF) — the ILI9341's native 565 format under COLMOD
205
+ // 0x55. The caller then streams the buffer with the 8-bit config (one row at
206
+ // a time; the buffer holds maxDim pixels).
207
+ static void ${packFn}(const uint16_t* px, uint32_t count) {
208
+ for (uint32_t i = 0; i < count; i++) {
209
+ uint16_t c = px[i];
210
+ ${rowBuf}[i * 2] = static_cast<uint8_t>(c >> 8);
211
+ ${rowBuf}[i * 2 + 1] = static_cast<uint8_t>(c);
212
+ }
213
+ }
214
+
215
+ // Stream count rgb565 pixels to the panel (chunked through the row2 scratch).
216
+ // Caller holds the RAMWR burst.
217
+ static void ${pixelsFn}(const uint16_t* px, uint32_t count) {
218
+ while (count > 0) {
219
+ uint32_t __chunk = (count > ${maxDim}) ? ${maxDim} : count;
220
+ ${packFn}(px, __chunk);
221
+ struct spi_buf __bd = { ${rowBuf}, static_cast<size_t>(__chunk) * 2U };
222
+ struct spi_buf_set __sd = { &__bd, 1 };
223
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
224
+ px += __chunk;
225
+ count -= __chunk;
226
+ }
227
+ }
228
+ `
229
+ : `
230
+ // Pack count rgb565 pixels into the row3 scratch buffer as 18-bit (666) wire
231
+ // format: (r<<3, g<<2, b<<3) — R,G,B byte order, verified correct on this
232
+ // panel in 18-bit mode. The caller then streams the buffer with the 8-bit
233
+ // config (one row at a time; the buffer holds maxDim pixels).
234
+ static void ${packFn}(const uint16_t* px, uint32_t count) {
235
+ for (uint32_t i = 0; i < count; i++) {
236
+ uint16_t c = px[i];
237
+ ${rowBuf}[i * 3] = static_cast<uint8_t>((c >> 8) & 0xF8u);
238
+ ${rowBuf}[i * 3 + 1] = static_cast<uint8_t>((c >> 3) & 0xFCu);
239
+ ${rowBuf}[i * 3 + 2] = static_cast<uint8_t>((c << 3) & 0xF8u);
240
+ }
241
+ }
242
+
243
+ // Stream count rgb565 pixels to the panel (converted to 18-bit, chunked
244
+ // through the row3 scratch). Caller holds the RAMWR burst.
245
+ static void ${pixelsFn}(const uint16_t* px, uint32_t count) {
246
+ while (count > 0) {
247
+ uint32_t __chunk = (count > ${maxDim}) ? ${maxDim} : count;
248
+ ${packFn}(px, __chunk);
249
+ struct spi_buf __bd = { ${rowBuf}, static_cast<size_t>(__chunk) * 3U };
250
+ struct spi_buf_set __sd = { &__bd, 1 };
251
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
252
+ px += __chunk;
253
+ count -= __chunk;
254
+ }
255
+ }
256
+ `;
257
+
258
+ // Per-controller solid-fill. Both tile one built row into the block buffer
259
+ // and stream it in multi-row chunks; only the color encoding differs.
260
+ const fillRectFn = isIli9341
261
+ ? `
262
+ static void __tc_op_fillRect(void* /*ctx*/, int16_t x, int16_t y, int16_t rw, int16_t rh, uint16_t c) {
263
+ if (rw <= 0 || rh <= 0) return;
264
+ uint8_t __b0 = static_cast<uint8_t>(c >> 8);
265
+ uint8_t __b1 = static_cast<uint8_t>(c);
266
+ // Build one row, then tile it into the block buffer.
267
+ for (int16_t i = 0; i < rw; i++) {
268
+ ${rowBuf}[i * 2] = __b0;
269
+ ${rowBuf}[i * 2 + 1] = __b1;
270
+ }
271
+ size_t rowBytes = static_cast<size_t>(rw) * 2U;
272
+ for (int16_t r = 0; r < __TC_FILL_ROWS; r++) {
273
+ memcpy(&${blockBuf}[static_cast<size_t>(r) * rowBytes], ${rowBuf}, rowBytes);
274
+ }
275
+ __tc_pnl_set_window(x, y, rw, rh);
276
+ __tc_pnl_ramwr_begin();
277
+ int16_t remaining = rh;
278
+ while (remaining > 0) {
279
+ int16_t chunk = (remaining > __TC_FILL_ROWS) ? __TC_FILL_ROWS : remaining;
280
+ struct spi_buf __bd = { ${blockBuf}, static_cast<size_t>(chunk) * rowBytes };
281
+ struct spi_buf_set __sd = { &__bd, 1 };
282
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
283
+ remaining -= chunk;
284
+ }
285
+ __tc_pnl_ramwr_end();
286
+ }
287
+ `
288
+ : `
289
+ // Fill a rect row-by-row using the one-row 18-bit scratch buffer. This is the
290
+ // hot path for background clears and large fills; building the color into the
291
+ // reused buffer and writing each row keeps memory bounded.
292
+ // Fill a rect with a solid color. The 18-bit row is tiled into the block buffer
293
+ // (__TC_FILL_ROWS rows), then the whole rect is sent in multi-row spi_write
294
+ // chunks. A full 480x320 clear is ~40 writes instead of ~320, dropping it from
295
+ // ~110ms to ~15ms — the ESP32 SPI driver's per-transaction overhead (not SPI
296
+ // bandwidth) is the binding cost, so fewer/larger writes win. Scatter-gather
297
+ // descriptor lists tested slower (the driver walks each descriptor), so this
298
+ // uses one contiguous buffer per write.
299
+ static void __tc_op_fillRect(void* /*ctx*/, int16_t x, int16_t y, int16_t rw, int16_t rh, uint16_t c) {
300
+ if (rw <= 0 || rh <= 0) return;
301
+ uint8_t __b0 = static_cast<uint8_t>((c >> 8) & 0xF8u);
302
+ uint8_t __b1 = static_cast<uint8_t>((c >> 3) & 0xFCu);
303
+ uint8_t __b2 = static_cast<uint8_t>((c << 3) & 0xF8u);
304
+ // Build one 18-bit row, then tile it into the block buffer.
305
+ for (int16_t i = 0; i < rw; i++) {
306
+ ${rowBuf}[i * 3] = __b0;
307
+ ${rowBuf}[i * 3 + 1] = __b1;
308
+ ${rowBuf}[i * 3 + 2] = __b2;
309
+ }
310
+ size_t rowBytes = static_cast<size_t>(rw) * 3U;
311
+ for (int16_t r = 0; r < __TC_FILL_ROWS; r++) {
312
+ memcpy(&${blockBuf}[static_cast<size_t>(r) * rowBytes], ${rowBuf}, rowBytes);
313
+ }
314
+ __tc_pnl_set_window(x, y, rw, rh);
315
+ __tc_pnl_ramwr_begin();
316
+ int16_t remaining = rh;
317
+ while (remaining > 0) {
318
+ int16_t chunk = (remaining > __TC_FILL_ROWS) ? __TC_FILL_ROWS : remaining;
319
+ struct spi_buf __bd = { ${blockBuf}, static_cast<size_t>(chunk) * rowBytes };
320
+ struct spi_buf_set __sd = { &__bd, 1 };
321
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
322
+ remaining -= chunk;
323
+ }
324
+ __tc_pnl_ramwr_end();
325
+ }
326
+ `;
327
+
328
+ // Per-controller init table. Both are byte-for-byte Adafruit sequences
329
+ // emitted as (cmd, len, data, delay) records walked in display_init.
330
+ const initBlock = isIli9341
331
+ ? `
332
+ // ── Panel init ──────────────────────────────────────────────────────────
333
+ // Adafruit ILI9341 init sequence (initILI9341), byte for byte: SWRESET,
334
+ // manufacturer/power/gamma registers, MADCTL 0x28 (MV landscape + BGR, the
335
+ // same convention as the ST7796S path), COLMOD 0x55 (16-bit RGB565 — the
336
+ // native wire format of the pack565 transport), SLPOUT (150ms), DISPON
337
+ // (150ms), INVON. INVON is included because the common ILI9341 SPI modules
338
+ // (2.2"/2.4" TFTs) ship with an inverted panel; the in-tree binding's
339
+ // display-inversion property mirrors this for the stock driver.
340
+ struct __tc_pnl_init_cmd { uint8_t cmd; uint8_t len; const uint8_t* data; uint16_t delay_ms; };
341
+ static const uint8_t __tc_pnl_i1[] = {0x03, 0x80, 0x02};
342
+ static const uint8_t __tc_pnl_i2[] = {0x00, 0xC1, 0x30};
343
+ static const uint8_t __tc_pnl_i3[] = {0x64, 0x03, 0x12, 0x81};
344
+ static const uint8_t __tc_pnl_i4[] = {0x85, 0x00, 0x78};
345
+ static const uint8_t __tc_pnl_i5[] = {0x39, 0x2C, 0x00, 0x34, 0x02};
346
+ static const uint8_t __tc_pnl_i6[] = {0x20};
347
+ static const uint8_t __tc_pnl_i7[] = {0x00, 0x00};
348
+ static const uint8_t __tc_pnl_i8[] = {0x23};
349
+ static const uint8_t __tc_pnl_i9[] = {0x10};
350
+ static const uint8_t __tc_pnl_i10[] = {0x3E, 0x28};
351
+ static const uint8_t __tc_pnl_i11[] = {0x86};
352
+ static const uint8_t __tc_pnl_i12[] = {0x28};
353
+ static const uint8_t __tc_pnl_i13[] = {0x55};
354
+ static const uint8_t __tc_pnl_i14[] = {0x00, 0x18};
355
+ static const uint8_t __tc_pnl_i15[] = {0x08, 0x82, 0x27};
356
+ static const uint8_t __tc_pnl_i16[] = {0x00};
357
+ static const uint8_t __tc_pnl_i17[] = {0x01};
358
+ static const uint8_t __tc_pnl_i18[] = {0x0F, 0x31, 0x2B, 0x0C, 0x0E, 0x08, 0x4E, 0xF1, 0x37, 0x07, 0x10, 0x03, 0x0E, 0x09, 0x00};
359
+ static const uint8_t __tc_pnl_i19[] = {0x00, 0x0E, 0x14, 0x03, 0x11, 0x07, 0x31, 0xC1, 0x48, 0x08, 0x0F, 0x0C, 0x31, 0x36, 0x0F};
360
+ static const struct __tc_pnl_init_cmd __tc_pnl_init_seq[] = {
361
+ {0x01, 0, NULL, 150}, // SWRESET
362
+ {0xEF, 3, __tc_pnl_i1, 0},
363
+ {0xCF, 3, __tc_pnl_i2, 0},
364
+ {0xED, 4, __tc_pnl_i3, 0},
365
+ {0xE8, 3, __tc_pnl_i4, 0},
366
+ {0xCB, 5, __tc_pnl_i5, 0},
367
+ {0xF7, 1, __tc_pnl_i6, 0},
368
+ {0xEA, 2, __tc_pnl_i7, 0},
369
+ {0xC0, 1, __tc_pnl_i8, 0}, // PWCTRL1
370
+ {0xC1, 1, __tc_pnl_i9, 0}, // PWCTRL2
371
+ {0xC5, 2, __tc_pnl_i10, 0}, // VMCTRL1
372
+ {0xC7, 1, __tc_pnl_i11, 0}, // VMCTRL2
373
+ {0x36, 1, __tc_pnl_i12, 0}, // MADCTL 0x28: MV (landscape) + BGR=1
374
+ {0x3A, 1, __tc_pnl_i13, 0}, // COLMOD 0x55 (16-bit RGB565)
375
+ {0xB1, 2, __tc_pnl_i14, 0}, // FRMCTR1
376
+ {0xB6, 3, __tc_pnl_i15, 0}, // DISCTRL
377
+ {0xF2, 1, __tc_pnl_i16, 0}, // ENABLE3G off
378
+ {0x26, 1, __tc_pnl_i17, 0}, // GAMSET gamma curve 1
379
+ {0xE0, 15, __tc_pnl_i18, 0}, // PGAMCTRL
380
+ {0xE1, 15, __tc_pnl_i19, 0}, // NGAMCTRL
381
+ {0x11, 0, NULL, 150}, // SLPOUT (sleep out — 120ms typical)
382
+ {0x29, 0, NULL, 150}, // DISPON
383
+ {0x21, 0, NULL, 0}, // INVON (common ILI9341 modules ship inverted)
384
+ };
385
+ `
386
+ : `
387
+ // ── Panel init ──────────────────────────────────────────────────────────
388
+ // Adafruit ST7796S init sequence (demo-st lib fork), byte for byte: hw reset
389
+ // pulse, SWRESET, manufacturer unlock, VCOM/MADCTL/COLMOD/porch registers,
390
+ // lock, SLPOUT (150ms), DISPON (150ms), INVOFF. MADCTL 0x28 = MV (rotation 1
391
+ // landscape) + BGR=1. BGR=1 makes the controller route data R/B to the
392
+ // B/R subpixels (verified: red data shows blue with BGR=1), which combined
393
+ // with a lossless R/B data swap renders the UI correctly; BGR=0 leaves a
394
+ // half-lossy G/B quirk on this clone controller.
395
+ struct __tc_pnl_init_cmd { uint8_t cmd; uint8_t len; const uint8_t* data; uint16_t delay_ms; };
396
+ static const uint8_t __tc_pnl_i1[] = {0xC3};
397
+ static const uint8_t __tc_pnl_i2[] = {0x96};
398
+ static const uint8_t __tc_pnl_i3[] = {0x1C};
399
+ static const uint8_t __tc_pnl_i4[] = {0x28};
400
+ static const uint8_t __tc_pnl_i5[] = {0x66};
401
+ static const uint8_t __tc_pnl_i6[] = {0x80};
402
+ static const uint8_t __tc_pnl_i7[] = {0x00};
403
+ static const uint8_t __tc_pnl_i8[] = {0x80, 0x02, 0x3B};
404
+ static const uint8_t __tc_pnl_i9[] = {0xC6};
405
+ static const uint8_t __tc_pnl_i10[] = {0x69};
406
+ static const uint8_t __tc_pnl_i11[] = {0x3C};
407
+ static const struct __tc_pnl_init_cmd __tc_pnl_init_seq[] = {
408
+ {0x01, 0, NULL, 150}, // SWRESET
409
+ {0xF0, 1, __tc_pnl_i1, 0}, // unlock manufacturer
410
+ {0xF0, 1, __tc_pnl_i2, 0},
411
+ {0xC5, 1, __tc_pnl_i3, 0}, // VCOM control
412
+ {0x36, 1, __tc_pnl_i4, 0}, // MADCTL 0x28: MV (rotation 1) + BGR=1
413
+ {0x3A, 1, __tc_pnl_i5, 0}, // COLMOD 0x66 (18-bit, 262K) — clean channel routing
414
+ {0xB0, 1, __tc_pnl_i6, 0}, // interface control
415
+ {0xB4, 1, __tc_pnl_i7, 0}, // inversion control
416
+ {0xB6, 3, __tc_pnl_i8, 0}, // display function control
417
+ {0xB7, 1, __tc_pnl_i9, 0}, // entry mode
418
+ {0xF0, 1, __tc_pnl_i10, 0}, // lock manufacturer
419
+ {0xF0, 1, __tc_pnl_i11, 0},
420
+ {0x11, 0, NULL, 150}, // SLPOUT (sleep out — 120ms typical)
421
+ {0x29, 0, NULL, 150}, // DISPON
422
+ {0x20, 0, NULL, 0}, // INVOFF (non-inverted at power-on)
423
+ };
424
+ `;
425
+
121
426
  const functions = `
122
427
  // ── Direct panel transport ──────────────────────────────────────────────
123
428
  // GPIOs: CS/DC/RST driven manually; CS stays LOW for the whole command+data
@@ -125,11 +430,11 @@ export function zephyrUiDisplayAdapter(
125
430
  // Adafruit ST77xx protocol this panel requires. The SPI config carries no CS
126
431
  // (cs_is_gpio = false -> the ESP32 driver's hardware CSEL pin is left idle;
127
432
  // it is not connected to the panel).
128
- static const struct gpio_dt_spec __tc_pnl_cs = GPIO_DT_SPEC_GET(DT_NODELABEL(spi2), cs_gpios);
129
- static const struct gpio_dt_spec __tc_pnl_dc = GPIO_DT_SPEC_GET(DT_NODELABEL(mipi_dbi), dc_gpios);
130
- static const struct gpio_dt_spec __tc_pnl_rst = GPIO_DT_SPEC_GET(DT_NODELABEL(mipi_dbi), reset_gpios);
433
+ static const struct gpio_dt_spec __tc_pnl_cs = GPIO_DT_SPEC_GET(DT_NODELABEL(${bus}), cs_gpios);
434
+ static const struct gpio_dt_spec __tc_pnl_dc = GPIO_DT_SPEC_GET(DT_NODELABEL(${bridge}), dc_gpios);
435
+ static const struct gpio_dt_spec __tc_pnl_rst = GPIO_DT_SPEC_GET(DT_NODELABEL(${bridge}), reset_gpios);
131
436
 
132
- // 8-bit frames for commands/parameters and 18-bit (3 bytes/pixel) pixel data.
437
+ // 8-bit frames for commands/parameters and ${isIli9341 ? '16-bit (2 bytes/pixel)' : '18-bit (3 bytes/pixel)'} pixel data.
133
438
  static struct spi_config __tc_pnl_cfg8 = {
134
439
  .frequency = DT_PROP(DT_NODELABEL(${dtLabel}), mipi_max_frequency),
135
440
  .operation = SPI_OP_MODE_MASTER | SPI_WORD_SET(8),
@@ -152,12 +457,12 @@ static void __tc_pnl_cmd(uint8_t cmd, const uint8_t* data, uint16_t len) {
152
457
  struct spi_buf_set __sc = { &__bc, 1 };
153
458
  __tc_pnl_cs_assert();
154
459
  gpio_pin_set_dt(&__tc_pnl_dc, 0);
155
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sc);
460
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sc);
156
461
  if (len > 0) {
157
462
  struct spi_buf __bd = { const_cast<uint8_t*>(data), len };
158
463
  struct spi_buf_set __sd = { &__bd, 1 };
159
464
  gpio_pin_set_dt(&__tc_pnl_dc, 1);
160
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sd);
465
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sd);
161
466
  }
162
467
  __tc_pnl_cs_release();
163
468
  }
@@ -169,7 +474,7 @@ static void __tc_pnl_ramwr_begin(void) {
169
474
  struct spi_buf_set __sc = { &__bc, 1 };
170
475
  __tc_pnl_cs_assert();
171
476
  gpio_pin_set_dt(&__tc_pnl_dc, 0);
172
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sc);
477
+ (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sc);
173
478
  gpio_pin_set_dt(&__tc_pnl_dc, 1);
174
479
  }
175
480
 
@@ -192,11 +497,11 @@ static uint16_t __tc_pnl_read_scanline(void) {
192
497
  struct spi_buf_set __sr = { &__br, 1 };
193
498
  __tc_pnl_cs_assert();
194
499
  gpio_pin_set_dt(&__tc_pnl_dc, 0);
195
- int __cmd_err = spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sc);
500
+ int __cmd_err = spi_write(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__sc);
196
501
  int __read_err = 0;
197
502
  if (__cmd_err == 0) {
198
503
  gpio_pin_set_dt(&__tc_pnl_dc, 1);
199
- __read_err = spi_transceive(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__st, &__sr);
504
+ __read_err = spi_transceive(DEVICE_DT_GET(DT_NODELABEL(${bus})), &__tc_pnl_cfg8, &__st, &__sr);
200
505
  }
201
506
  __tc_pnl_cs_release();
202
507
  if (__cmd_err != 0 || __read_err != 0) return 0xFFFFu;
@@ -209,6 +514,19 @@ static uint16_t __tc_pnl_read_scanline(void) {
209
514
  // have no safe post-rectangle interval, so they retain the normal single-burst
210
515
  // behavior; the caller's framebuffer still prevents intermediate software frames.
211
516
  static void __tc_pnl_wait_for_safe_rect(int16_t y, int16_t rh) {
517
+ #if __TC_TE_SYNC
518
+ // TE variant: arm on the next frame pulse, then start the burst — the write
519
+ // chases the scan beam from the top of the rect. Bounded so a stuck TE line
520
+ // can never hang the UI loop.
521
+ if (rh < 8 || y < 0) return;
522
+ uint32_t __was = __tc_te_count;
523
+ uint32_t __deadline = k_uptime_get_32() + 25U;
524
+ while (__tc_te_count == __was) {
525
+ if (static_cast<int32_t>(k_uptime_get_32() - __deadline) >= 0) break;
526
+ k_msleep(0);
527
+ }
528
+ return;
529
+ #endif
212
530
  if (!__tc_pnl_scanline_sync || rh < 8 || y < 0) return;
213
531
  int16_t __last = static_cast<int16_t>(y + rh - 1);
214
532
  if (__last >= static_cast<int16_t>(${h} - 2)) return;
@@ -220,34 +538,7 @@ static void __tc_pnl_wait_for_safe_rect(int16_t y, int16_t rh) {
220
538
  k_msleep(0);
221
539
  }
222
540
  }
223
-
224
- // Pack count rgb565 pixels into the row3 scratch buffer as 18-bit (666) wire
225
- // format: (r<<3, g<<2, b<<3) — R,G,B byte order, verified correct on this
226
- // panel in 18-bit mode. The caller then streams the buffer with the 8-bit
227
- // config (one row at a time; the buffer holds maxDim pixels).
228
- static void __tc_pnl_pack666(const uint16_t* px, uint32_t count) {
229
- for (uint32_t i = 0; i < count; i++) {
230
- uint16_t c = px[i];
231
- __tc_display_row3[i * 3] = static_cast<uint8_t>((c >> 8) & 0xF8u);
232
- __tc_display_row3[i * 3 + 1] = static_cast<uint8_t>((c >> 3) & 0xFCu);
233
- __tc_display_row3[i * 3 + 2] = static_cast<uint8_t>((c << 3) & 0xF8u);
234
- }
235
- }
236
-
237
- // Stream count rgb565 pixels to the panel (converted to 18-bit, chunked
238
- // through the row3 scratch). Caller holds the RAMWR burst.
239
- static void __tc_pnl_pixels666(const uint16_t* px, uint32_t count) {
240
- while (count > 0) {
241
- uint32_t __chunk = (count > ${maxDim}) ? ${maxDim} : count;
242
- __tc_pnl_pack666(px, __chunk);
243
- struct spi_buf __bd = { __tc_display_row3, static_cast<size_t>(__chunk) * 3U };
244
- struct spi_buf_set __sd = { &__bd, 1 };
245
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sd);
246
- px += __chunk;
247
- count -= __chunk;
248
- }
249
- }
250
-
541
+ ${pixelHelpers}
251
542
  // Set the address window. Coordinates are in the effective (rotated) UI
252
543
  // space; the panel's MADCTL (rotation 1: MV) maps them onto the native
253
544
  // 320x480 raster, so CASET/RASET take the UI x/y ranges directly.
@@ -294,12 +585,12 @@ static void __tc_op_setAddrWindow(void* /*ctx*/, int16_t x, int16_t y, int16_t w
294
585
  // Push the stashed rect's worth of rgb565 pixels. Called right after
295
586
  // setAddrWindow with exactly (aw_w * aw_h) pixels. The caller's buffer is
296
587
  // never mutated (scroll canvases persist across frames), so pixels are
297
- // converted in chunks through the row3 scratch buffer.
588
+ // converted in chunks through the row${bpp} scratch buffer.
298
589
  static void __tc_op_writePixels(void* /*ctx*/, const uint16_t* px, uint32_t n) {
299
590
  if (n == 0U) return;
300
591
  __tc_pnl_set_window(__tc_aw_x, __tc_aw_y, __tc_aw_w, __tc_aw_h);
301
592
  __tc_pnl_ramwr_begin();
302
- __tc_pnl_pixels666(px, n);
593
+ ${pixelsFn}(px, n);
303
594
  __tc_pnl_ramwr_end();
304
595
  }
305
596
 
@@ -308,48 +599,10 @@ static void __tc_op_writePixel(void* /*ctx*/, int16_t x, int16_t y, uint16_t c)
308
599
  uint16_t __c = c;
309
600
  __tc_pnl_set_window(x, y, 1, 1);
310
601
  __tc_pnl_ramwr_begin();
311
- __tc_pnl_pixels666(&__c, 1);
602
+ ${pixelsFn}(&__c, 1);
312
603
  __tc_pnl_ramwr_end();
313
604
  }
314
-
315
- // Fill a rect row-by-row using the one-row 18-bit scratch buffer. This is the
316
- // hot path for background clears and large fills; building the color into the
317
- // reused buffer and writing each row keeps memory bounded.
318
- // Fill a rect with a solid color. The 18-bit row is tiled into the block buffer
319
- // (__TC_FILL_ROWS rows), then the whole rect is sent in multi-row spi_write
320
- // chunks. A full 480x320 clear is ~40 writes instead of ~320, dropping it from
321
- // ~110ms to ~15ms — the ESP32 SPI driver's per-transaction overhead (not SPI
322
- // bandwidth) is the binding cost, so fewer/larger writes win. Scatter-gather
323
- // descriptor lists tested slower (the driver walks each descriptor), so this
324
- // uses one contiguous buffer per write.
325
- static void __tc_op_fillRect(void* /*ctx*/, int16_t x, int16_t y, int16_t rw, int16_t rh, uint16_t c) {
326
- if (rw <= 0 || rh <= 0) return;
327
- uint8_t __b0 = static_cast<uint8_t>((c >> 8) & 0xF8u);
328
- uint8_t __b1 = static_cast<uint8_t>((c >> 3) & 0xFCu);
329
- uint8_t __b2 = static_cast<uint8_t>((c << 3) & 0xF8u);
330
- // Build one 18-bit row, then tile it into the block buffer.
331
- for (int16_t i = 0; i < rw; i++) {
332
- __tc_display_row3[i * 3] = __b0;
333
- __tc_display_row3[i * 3 + 1] = __b1;
334
- __tc_display_row3[i * 3 + 2] = __b2;
335
- }
336
- size_t rowBytes = static_cast<size_t>(rw) * 3U;
337
- for (int16_t r = 0; r < __TC_FILL_ROWS; r++) {
338
- memcpy(&__tc_display_block3[static_cast<size_t>(r) * rowBytes], __tc_display_row3, rowBytes);
339
- }
340
- __tc_pnl_set_window(x, y, rw, rh);
341
- __tc_pnl_ramwr_begin();
342
- int16_t remaining = rh;
343
- while (remaining > 0) {
344
- int16_t chunk = (remaining > __TC_FILL_ROWS) ? __TC_FILL_ROWS : remaining;
345
- struct spi_buf __bd = { __tc_display_block3, static_cast<size_t>(chunk) * rowBytes };
346
- struct spi_buf_set __sd = { &__bd, 1 };
347
- (void)spi_write(DEVICE_DT_GET(DT_NODELABEL(spi2)), &__tc_pnl_cfg8, &__sd);
348
- remaining -= chunk;
349
- }
350
- __tc_pnl_ramwr_end();
351
- }
352
-
605
+ ${fillRectFn}
353
606
  static int16_t __tc_op_width(void* /*ctx*/) { return ${w}; }
354
607
  static int16_t __tc_op_height(void* /*ctx*/) { return ${h}; }
355
608
 
@@ -371,48 +624,12 @@ const CuttlefishPanelOps __tc_display_ops = {
371
624
 
372
625
  // The live display target: a CuttlefishGFX driven by the panel-ops vtable.
373
626
  CuttlefishGFX __tc_display(&__tc_display_ops, nullptr);
374
-
375
- // ── Panel init ──────────────────────────────────────────────────────────
376
- // Adafruit ST7796S init sequence (demo-st lib fork), byte for byte: hw reset
377
- // pulse, SWRESET, manufacturer unlock, VCOM/MADCTL/COLMOD/porch registers,
378
- // lock, SLPOUT (150ms), DISPON (150ms), INVOFF. MADCTL 0x28 = MV (rotation 1
379
- // landscape) + BGR=1. BGR=1 makes the controller route data R/B to the
380
- // B/R subpixels (verified: red data shows blue with BGR=1), which combined
381
- // with a lossless R/B data swap renders the UI correctly; BGR=0 leaves a
382
- // half-lossy G/B quirk on this clone controller.
383
- struct __tc_pnl_init_cmd { uint8_t cmd; uint8_t len; const uint8_t* data; uint16_t delay_ms; };
384
- static const uint8_t __tc_pnl_i1[] = {0xC3};
385
- static const uint8_t __tc_pnl_i2[] = {0x96};
386
- static const uint8_t __tc_pnl_i3[] = {0x1C};
387
- static const uint8_t __tc_pnl_i4[] = {0x28};
388
- static const uint8_t __tc_pnl_i5[] = {0x66};
389
- static const uint8_t __tc_pnl_i6[] = {0x80};
390
- static const uint8_t __tc_pnl_i7[] = {0x00};
391
- static const uint8_t __tc_pnl_i8[] = {0x80, 0x02, 0x3B};
392
- static const uint8_t __tc_pnl_i9[] = {0xC6};
393
- static const uint8_t __tc_pnl_i10[] = {0x69};
394
- static const uint8_t __tc_pnl_i11[] = {0x3C};
395
- static const struct __tc_pnl_init_cmd __tc_pnl_init_seq[] = {
396
- {0x01, 0, NULL, 150}, // SWRESET
397
- {0xF0, 1, __tc_pnl_i1, 0}, // unlock manufacturer
398
- {0xF0, 1, __tc_pnl_i2, 0},
399
- {0xC5, 1, __tc_pnl_i3, 0}, // VCOM control
400
- {0x36, 1, __tc_pnl_i4, 0}, // MADCTL 0x28: MV (rotation 1) + BGR=1
401
- {0x3A, 1, __tc_pnl_i5, 0}, // COLMOD 0x66 (18-bit, 262K) — clean channel routing
402
- {0xB0, 1, __tc_pnl_i6, 0}, // interface control
403
- {0xB4, 1, __tc_pnl_i7, 0}, // inversion control
404
- {0xB6, 3, __tc_pnl_i8, 0}, // display function control
405
- {0xB7, 1, __tc_pnl_i9, 0}, // entry mode
406
- {0xF0, 1, __tc_pnl_i10, 0}, // lock manufacturer
407
- {0xF0, 1, __tc_pnl_i11, 0},
408
- {0x11, 0, NULL, 150}, // SLPOUT (sleep out — 120ms typical)
409
- {0x29, 0, NULL, 150}, // DISPON
410
- {0x20, 0, NULL, 0}, // INVOFF (non-inverted at power-on)
411
- };
412
-
627
+ ${initBlock}
413
628
  // ── display_init (called from setup) ────────────────────────────────────
629
+
414
630
  static inline void display_init() {
415
631
  printk("TC_DISPLAY: device ready\\n");
632
+ ${teInit}
416
633
  ${blInit}
417
634
  gpio_pin_configure_dt(&__tc_pnl_cs, GPIO_OUTPUT);
418
635
  gpio_pin_configure_dt(&__tc_pnl_dc, GPIO_OUTPUT);
@@ -429,7 +646,7 @@ ${blInit}
429
646
  if (__tc_pnl_init_seq[i].delay_ms > 0) k_msleep(__tc_pnl_init_seq[i].delay_ms);
430
647
  }
431
648
  __tc_op_fillRect(nullptr, 0, 0, ${w}, ${h}, 0x0000);
432
- printk("TC_DISPLAY: direct init done (18-bit, black fill)\\n");
649
+ printk("TC_DISPLAY: direct init done (${wireTag}, black fill)\\n");
433
650
  }
434
651
 
435
652
  static inline void display_fillScreen(UI_COLOR_T color) {
@@ -559,5 +776,6 @@ export const zephyrDisplayAdapterGenerator: DisplayAdapterGenerator = (display)
559
776
  return zephyrUiDisplayAdapter(profile, {
560
777
  scanlineSync: display.scanlineSync,
561
778
  miso: display.spiPins?.miso,
779
+ tearingEffectPin: (display as { tearingEffectPin?: number }).tearingEffectPin,
562
780
  });
563
781
  };