Add esp32_16MB_M_eth

Test needed if NetDebug works on esp32_16MB_M_eth
This commit is contained in:
Ewoud
2023-03-10 15:41:22 +01:00
parent 437284d380
commit a0a0f99c3e
3 changed files with 14 additions and 2 deletions

View File

@@ -868,7 +868,8 @@ void WLED::initInterfaces()
WiFi.hostByName(WLED_DEBUG_HOST, netDebugPrintIP, 750);
#else
#ifdef WLED_USE_ETHERNET
ETH.hostByName(WLED_DEBUG_HOST, netDebugPrintIP);
// ETH.hostByName(WLED_DEBUG_HOST, netDebugPrintIP); WLEDMM: ETH.hostByName does not exist, WiFi.hostByName seems to do the same, but must be tested.
WiFi.hostByName(WLED_DEBUG_HOST, netDebugPrintIP);
#else
WiFi.hostByName(WLED_DEBUG_HOST, netDebugPrintIP);
#endif