ESP32S3 with W5500 Ethernet : how to compile?

Hi

I am new to this forum, hello

I try to compile OMG on a Kincony ESP32 S3Core, made of ESP32 S3 and WS5500 ethernet.

With the current environment and the following user_config.h (see below) I got this error message (see below)

how to compile for W5500 ?

I could compile ESPhome and Tasmota for this board with an operational Ethernet port so I guess a stable firmware is available for W5500 on ESP32.

Thanks for your help

Error :

main/User_config.h:95:27: error: 'ETH_PHY_W5500' was not declared in this scope
 #     define ETH_PHY_TYPE ETH_PHY_W5500

user_config.h :

#define ESP32_ETHERNET=true // Uncomment to use Ethernet module on ESP32 Ethernet gateway and adapt the settings to your board below, the default parameter are for OLIMEX ESP32 gateway
#ifdef ESP32_ETHERNET
#  ifndef ETH_PHY_ADDR
#    define ETH_PHY_ADDR 0
#  endif
#  ifndef ETH_PHY_TYPE
#     define ETH_PHY_TYPE ETH_PHY_W5500
#  endif

#  ifndef ETH_PHY_CS
#    define ETH_PHY_CS 41
#  endif
#  ifndef ETH_PHY_IRQ
#    define ETH_PHY_IRQ 2
#  endif
#  ifndef ETH_PHY_RST
#    define ETH_PHY_RST 1
#  endif
#  ifndef ETH_PHY_MISO
#    define ETH_PHY_MISO 42
#  endif

#  ifndef ETH_PHY_MOSI
#    define ETH_PHY_MOSI 44
#  endif
#  ifndef ETH_SPI_SCK
#     define ETH_SPI_SCK  43
#  endif
#endif