From a08872299e886f549258966d29929184c5665554 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 30 May 2026 11:26:02 -0500 Subject: [PATCH] Fix thinknode_m7 esp32s3 CI build failure from missing `esp_eth_driver.h` (#10585) * Initial plan * Add ESP32 ethernet header compatibility shim --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> --- src/platform/esp32/esp_eth_driver.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/platform/esp32/esp_eth_driver.h diff --git a/src/platform/esp32/esp_eth_driver.h b/src/platform/esp32/esp_eth_driver.h new file mode 100644 index 000000000..b3c9de78b --- /dev/null +++ b/src/platform/esp32/esp_eth_driver.h @@ -0,0 +1,7 @@ +#pragma once + +#if __has_include_next("esp_eth_driver.h") +#include_next "esp_eth_driver.h" +#elif __has_include("esp_eth.h") +#include "esp_eth.h" +#endif