diff options
| author | Jan-Henrik Bruhn <github@jhbruhn.de> | 2025-01-19 12:47:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-19 12:47:07 +0100 |
| commit | c7cb4e30b1df48de5c01365ee9769df2a0aa313a (patch) | |
| tree | b1fcd06f7a32dd8088ce0690e5c34cf0e80292d5 /src | |
| parent | 99131abc836368df544ad98874bc54aefd961553 (diff) | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/platforms/esp32c6/dma_parallel_io.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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 <Arduino.h> #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 |
