We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think that from esp_eth.c:290
esp_eth_driver_t *eth_driver = (esp_eth_driver_t *)hdl; eth_driver->priv = priv; ETH_CHECK(eth_driver, "ethernet driver handle can't be null", err, ESP_ERR_INVALID_ARG);
should be
esp_eth_driver_t *eth_driver = (esp_eth_driver_t *)hdl; ETH_CHECK(eth_driver, "ethernet driver handle can't be null", err, ESP_ERR_INVALID_ARG); eth_driver->priv = priv;
The text was updated successfully, but these errors were encountered:
well spotted! We will fix it soon. Thanks.
Sorry, something went wrong.
0a7ccb8
suda-morris
No branches or pull requests
I think that from esp_eth.c:290
should be
The text was updated successfully, but these errors were encountered: