Unverified Commit 0f437e4d authored by Earle F. Philhower, III's avatar Earle F. Philhower, III Committed by GitHub

Remove leftover debug printf in LWIP_Ethernet (#1572)

See #1161
parent 3778fbb8
...@@ -416,10 +416,6 @@ template<class RawDev> ...@@ -416,10 +416,6 @@ template<class RawDev>
err_t LwipIntfDev<RawDev>::linkoutput_s(netif* netif, struct pbuf* pbuf) { err_t LwipIntfDev<RawDev>::linkoutput_s(netif* netif, struct pbuf* pbuf) {
LwipIntfDev* lid = (LwipIntfDev*)netif->state; LwipIntfDev* lid = (LwipIntfDev*)netif->state;
if (pbuf->len != pbuf->tot_len || pbuf->next) {
Serial.println("ERRTOT\r\n");
}
uint16_t len = lid->sendFrame((const uint8_t*)pbuf->payload, pbuf->len); uint16_t len = lid->sendFrame((const uint8_t*)pbuf->payload, pbuf->len);
#if PHY_HAS_CAPTURE #if PHY_HAS_CAPTURE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment