From 11c510ff1b5e4e30b9023390e969890386673071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Wed, 22 Jul 2026 09:35:36 +0200 Subject: [PATCH] WIP: Big Display Node (#10926) --- src/graphics/HUB75Display.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/graphics/HUB75Display.cpp b/src/graphics/HUB75Display.cpp index 36ca64f39..f1b0528f1 100644 --- a/src/graphics/HUB75Display.cpp +++ b/src/graphics/HUB75Display.cpp @@ -41,9 +41,8 @@ bool HUB75Display::connect() cfg.i2sspeed = HUB75_I2S_CFG::HZ_8M; // timing headroom (signal integrity) cfg.latch_blanking = 4; // clean row transitions cfg.clkphase = false; // inverted clock phase: fixes 1px skew of lower half - cfg.double_buff = false; // single buffer: halves the internal-SRAM DMA - // footprint. display() draws directly into the - // live buffer with a dirty-diff + cfg.double_buff = false; // single buffer halves the internal-SRAM DMA + // footprint; display() dirty-diffs into the live buffer matrix = new MatrixPanel_I2S_DMA(cfg); bool ok = matrix->begin();