diff options
| author | Avi B <474746+abrender@users.noreply.github.com> | 2022-10-10 22:37:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-10 22:37:38 -0400 |
| commit | 062154b4d8ba1de239d60515becd2b62df83e231 (patch) | |
| tree | f7e845279fd01d80da062395c8bfdb9397d63591 /src | |
| parent | e2b9b6db36c25c3a15c788286d6732024091157c (diff) | |
Fix missing variable in ESP_LOGI call
This log line was broken in https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA/commit/7628be00c2a99f7189d2498f36e0e7857a371440 and causes a build error for esp-idf.
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 816f993..db6dbc5 100644 --- a/src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp +++ b/src/ESP32-HUB75-MatrixPanel-I2S-DMA.cpp @@ -177,7 +177,7 @@ void MatrixPanel_I2S_DMA::configureDMA(const HUB75_I2S_CFG& _cfg) } // end frame rows - ESP_LOGI(TAG, "%d DMA descriptors linked to buffer data."); + ESP_LOGI(TAG, "%d DMA descriptors linked to buffer data.", current_dmadescriptor_offset); // // Setup DMA and Output to GPIO |
