You will currently see lots of usage of print library. I will later put all print lines into a debug if statement.
Here's a sample of what I see on my serial_sw debug screen: ---------- PACKET RECEIVED ---------- -- IP Header -- 45 00 00 54 00 00 40 00 40 01 B5 53 C0 A8 02 02 C0 A8 02 03 -- ICMP Packet -- ---------- ping received! ---------- 08 00 6C 4C 09 71 00 32 0E 8F 80 4C FD 31 0B 00 ---------- sending ping reply: ---------- 00 00 5F 4F 09 71 00 32 0E 8F 80 4C FD 31 0B 00 And here's a sample of pings from my linux PC: # ping -c 10 192.168.2.3 PING 192.168.2.3 (192.168.2.3) 56(84) bytes of data. 64 bytes from 192.168.2.3: icmp_seq=1 ttl=127 time=310 ms 64 bytes from 192.168.2.3: icmp_seq=2 ttl=127 time=310 ms 64 bytes from 192.168.2.3: icmp_seq=3 ttl=127 time=309 ms 64 bytes from 192.168.2.3: icmp_seq=4 ttl=127 time=309 ms 64 bytes from 192.168.2.3: icmp_seq=5 ttl=127 time=309 ms 64 bytes from 192.168.2.3: icmp_seq=6 ttl=127 time=308 ms 64 bytes from 192.168.2.3: icmp_seq=7 ttl=127 time=309 ms 64 bytes from 192.168.2.3: icmp_seq=8 ttl=127 time=309 ms 64 bytes from 192.168.2.3: icmp_seq=9 ttl=127 time=309 ms 64 bytes from 192.168.2.3: icmp_seq=10 ttl=127 time=308 ms --- 192.168.2.3 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9005ms rtt min/avg/max/mdev = 308.987/309.963/310.987/0.816 ms -- You received this message because you are subscribed to the Google Groups "jallib" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/jallib?hl=en.
