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:
parent
99131abc83
commit
c7cb4e30b1
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue