Fix missing variable in ESP_LOGI call
This log line was broken in 7628be00c2
and causes a build error for esp-idf.
This commit is contained in:
parent
e2b9b6db36
commit
062154b4d8
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ void MatrixPanel_I2S_DMA::configureDMA(const HUB75_I2S_CFG& _cfg)
|
||||||
|
|
||||||
} // end frame rows
|
} // 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
|
// Setup DMA and Output to GPIO
|
||||||
|
|
Loading…
Reference in a new issue