diff options
| author | mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> | 2023-03-19 01:03:49 +0000 |
|---|---|---|
| committer | mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> | 2023-03-19 01:03:49 +0000 |
| commit | 9f2cb15b537b09d3ec4025e365a06875598f034e (patch) | |
| tree | 077e858d6811fbc883ac7ec7a54259891c890dd9 /src | |
| parent | 30b74a246be08f484d2c8ed278f1352f7cb65a75 (diff) | |
ROW_SCAN_SHUFFLE #338
New compile time option: ROW_SCAN_SHUFFLE
Don't update rows in sequential order.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
