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.
This commit is contained in:
Jan-Henrik Bruhn 2025-01-19 12:47:07 +01:00 committed by GitHub
parent 99131abc83
commit c7cb4e30b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
#endif