-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Richard Lemon <[email protected]>
- Loading branch information
Showing
2 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# LWIP app | ||
|
||
LWIP echo server with any luck, based off the picoserver | ||
|
||
## Troubleshooting | ||
|
||
### ping doesn't work | ||
|
||
Try ```arpping``` | ||
|
||
```bash | ||
arpping -i eth0 192.168.168.2 | ||
``` | ||
|
||
You should see many packets going back and forth | ||
|
||
If there are none check that you are servicing lwip in your timer interrupt. | ||
|
||
### arp ping only returns one packet | ||
|
||
```bash | ||
arpping -i eth0 192.168.168.2 | ||
``` | ||
|
||
try pinging broadcast | ||
|
||
```bash | ||
arpping -b -i eth0 192.168.168.2 | ||
``` | ||
|
||
if this works it is likely you have different mac addresses for your hardware and lwip stack. |