From 9f2cb15b537b09d3ec4025e365a06875598f034e Mon Sep 17 00:00:00 2001 From: mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> Date: Sun, 19 Mar 2023 01:03:49 +0000 Subject: [PATCH] ROW_SCAN_SHUFFLE #338 New compile time option: ROW_SCAN_SHUFFLE Don't update rows in sequential order. --- src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp b/src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp index 1d1738a..04ab22f 100644 --- a/src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp +++ b/src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp @@ -199,7 +199,7 @@ void MatrixPanel_I2S_DMA::configureDMA(const HUB75_I2S_CFG &_cfg) } - #ifndef ROW_SCAN_SHUFFLE + #ifndef ROW_SCAN_SHUFFLE // Fill DMA linked lists for both frames (as in, halves of the HUB75 panel) in sequence (top to bottom) for (int row = 0; row < ROWS_PER_FRAME; row++) #else