kopia lustrzana https://github.com/micropython/micropython-lib
iperf3: Pre-declare some variables set in the loop.
This is a change just to make the linter happy, the code probably would have run OK without it. Found by Ruff checking F821. Signed-off-by: Angus Gratton <angus@redyak.com.au>pull/714/head
rodzic
c6a72c70b9
commit
991ac986fd
|
@ -380,9 +380,11 @@ def client(host, udp=False, reverse=False, bandwidth=10 * 1024 * 1024):
|
||||||
ticks_us_end = param["time"] * 1000000
|
ticks_us_end = param["time"] * 1000000
|
||||||
poll = select.poll()
|
poll = select.poll()
|
||||||
poll.register(s_ctrl, select.POLLIN)
|
poll.register(s_ctrl, select.POLLIN)
|
||||||
|
buf = None
|
||||||
s_data = None
|
s_data = None
|
||||||
start = None
|
start = None
|
||||||
udp_packet_id = 0
|
udp_packet_id = 0
|
||||||
|
udp_last_send = None
|
||||||
while True:
|
while True:
|
||||||
for pollable in poll.poll(stats.max_dt_ms()):
|
for pollable in poll.poll(stats.max_dt_ms()):
|
||||||
if pollable_is_sock(pollable, s_data):
|
if pollable_is_sock(pollable, s_data):
|
||||||
|
|
Ładowanie…
Reference in New Issue