| 77 | #endif |
| 78 | |
| 79 | void xs_ethernet_start(xsMachine *the) |
| 80 | { |
| 81 | if (MODDEF_ETHERNET_DEBUG) ESP_LOGI(TAG, LOG_FMT("Starting Ethernet")); |
| 82 | esp_err_t err = initEthernet(the); |
| 83 | if (err != ESP_OK) |
| 84 | xsUnknownError("Ethernet.c Ethernet device not found"); |
| 85 | } |
| 86 | |
| 87 | void xs_ethernet_useStaticIP(xsMachine *the) |
| 88 | { |
nothing calls this directly
no test coverage detected