Reduce console spam

remove left over debug printf
This commit is contained in:
Arjan van de Ven
2015-02-16 14:13:59 -05:00
committed by Dimitri John Ledkov
parent 9c69d4ab47
commit b3d7cd0539
-9
View File
@@ -3,18 +3,9 @@
int uip_tx_do_ipv4(struct uip_tx_arg *arg)
{
struct uip_ip *ip;
int n;
uint8_t *p;
ip = (struct uip_ip *)(arg->eth);
p = (uint8_t *)arg->eth;
for (n = 0; n < 64; n++) {
printf("%02X ", *p++);
if ((n & 7) == 7)
printf("\n");
}
switch (ip->proto) {
case UIP_IP_P_ICMP:
uip_tx_do_ipv4_icmp(arg);