Skip to content

Commit

Permalink
iperf instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
drom committed Dec 22, 2024
1 parent d67bbd8 commit 6b6383c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,32 @@ ESP Speed Test
* A reports stats to C via Web Page


# AP

```sh
idf.py -p /dev/ttyACM0 monitor
wifi_mode ap
ap_set espeed -a open
wifi_txpower -u 83
iperf -s -i 3
```

## UDP

```sh
iperf -s -i 3 -u
```

# STA

```sh
idf.py -p /dev/ttyACM1 monitor
sta_connect espeed
wifi_txpower -u 83
iperf -c 192.168.4.1 -i 3 -t 60
```
## UDP

```sh
iperf -c 192.168.4.1 -i 3 -t 60 -u
```

0 comments on commit 6b6383c

Please sign in to comment.