From c7cb4e30b1df48de5c01365ee9769df2a0aa313a Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Sun, 19 Jan 2025 12:47:07 +0100 Subject: Remove duplicate Arduino.h import from esp32c6 dma_parallel_io.cpp The esp32c6 DMA Parallel IO implementation includes Arduino.h in the second line, and then later on, with the correct ifdef-gates. This removes that first line because it causes issues when building with esp-idf also for other targets. --- src/platforms/esp32c6/dma_parallel_io.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/platforms/esp32c6/dma_parallel_io.cpp b/src/platforms/esp32c6/dma_parallel_io.cpp index a7685c7..f407a30 100644 --- a/src/platforms/esp32c6/dma_parallel_io.cpp +++ b/src/platforms/esp32c6/dma_parallel_io.cpp @@ -1,5 +1,4 @@ #include "dma_parallel_io.hpp" -#include #ifdef CONFIG_IDF_TARGET_ESP32C6 @@ -369,4 +368,4 @@ void Bus_Parallel16::flip_dma_output_buffer(int back_buffer_id) } // end flip -#endif \ No newline at end of file +#endif -- cgit v1.2.3