From 745b98e1977c37be55080208a8d4a10edb9f35d1 Mon Sep 17 00:00:00 2001 From: sonictl Date: Tue, 17 May 2022 22:08:54 +0800 Subject: [PATCH] Update LittleFS_PNG_DMA.ino add a little description for 'DMA' (Direct Memory Access) --- examples/PNG Images/LittleFS_PNG_DMA/LittleFS_PNG_DMA.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/PNG Images/LittleFS_PNG_DMA/LittleFS_PNG_DMA.ino b/examples/PNG Images/LittleFS_PNG_DMA/LittleFS_PNG_DMA.ino index 1ad440d..f7c3257 100644 --- a/examples/PNG Images/LittleFS_PNG_DMA/LittleFS_PNG_DMA.ino +++ b/examples/PNG Images/LittleFS_PNG_DMA/LittleFS_PNG_DMA.ino @@ -3,7 +3,7 @@ // ESP32, ESP8266). It renders a png file that is stored in LittleFS // using the PNGdec library (available via library manager). -// It uses DMA to send image data to the TFT while the decoding takes +// It uses DMA (Direct Memory Access) to send image data to the TFT while the decoding takes // place. The processor and display combination must support DMA to // run this sketch! The decode time dominates so DMA is mainly an advantage // for slow display interface speeds.