diff --git a/wled00/wled.h b/wled00/wled.h index 29780a227..058d4946c 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -205,10 +205,10 @@ WLED_GLOBAL IPAddress staticGateway _INIT_N((( 0, 0, 0, 0))); // gateway (r WLED_GLOBAL IPAddress staticSubnet _INIT_N(((255, 255, 255, 0))); // most common subnet in home networks WLED_GLOBAL bool noWifiSleep _INIT(false); // disabling modem sleep modes will increase heat output and power usage, but may help with connection issues #ifdef WLED_USE_ETHERNET - #ifdef WLED_ETH_DEFAULT // use none for ethernet board type if default not defined + #ifdef WLED_ETH_DEFAULT // default ethernet board type if specified WLED_GLOBAL int ethernetType _INIT(WLED_ETH_DEFAULT); // ethernet board type #else - WLED_GLOBAL int ethernetType _INIT(WLED_ETH_NONE); //default ethernet board type if specified + WLED_GLOBAL int ethernetType _INIT(WLED_ETH_NONE); // use none for ethernet board type if default not defined #endif #endif