Fork for fixes

Revision:
19:58e840279555
Parent:
18:a19f7933d5c7
Child:
21:4dcda56a9820
--- a/UipEthernet.cpp	Wed Jul 22 20:37:24 2020 +0000
+++ b/UipEthernet.cpp	Thu Sep 24 21:14:56 2020 +0000
@@ -406,6 +406,9 @@
                 if (uip_len > 0) {
                     uip_arp_out();
                     network_send();
+#ifdef UIPETHERNET_DEBUG
+                    printf("after network_send() type IP, uip_len: %d, inPacket %d \r\n", uip_len, inPacket);
+#endif                    
                 }
             }
             else
@@ -417,6 +420,9 @@
                 uip_arp_arpin();
                 if (uip_len > 0) {
                     network_send();
+#ifdef UIPETHERNET_DEBUG
+                    printf("after network_send() type ARP, uip_len: %d, inPacket %d \r\n", uip_len, inPacket);
+#endif                    
                 }
             }
         }