From 8e734e5b2b7dfc60a53bc26390bfcc101f6c5534 Mon Sep 17 00:00:00 2001 From: Patrick Van Oosterwijck Date: Mon, 8 Sep 2025 17:33:13 -0600 Subject: [PATCH] Add espressif/lan867x driver To be able to support Arduino development on the [Silicognition ManT1S](https://www.crowdsupply.com/silicognition/mant1s) board, support for the espressif/lan867x driver first needs to be added to the Arduino Library. Support for the ManT1S can then be added later to the ESP32 Arduino Core. This PR adds generic LAN867x driver support for chips that support the RMII PHY interface (ESP32 and ESP32P4). --- main/idf_component.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main/idf_component.yml b/main/idf_component.yml index 4ba96d85a..c9995535b 100644 --- a/main/idf_component.yml +++ b/main/idf_component.yml @@ -21,3 +21,7 @@ dependencies: require: public rules: - if: "target not in [esp32c2, esp32p4]" + espressif/lan867x: + version: "^2.0.0" + rules: + - if: "target in [esp32, esp32p4]"