Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/graphics/HUB75Display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Loading