circuitpython/ports/raspberrypi/supervisor
Jeff Epler 6c3cdceb45
Implement scan, connect, ping
My pings go out, and then they come back

```py
import os
import wifi
import ipaddress

wifi.radio.connect(os.getenv('WIFI_SSID'), os.getenv('WIFI_PASSWORD'))
ipv4 = ipaddress.ip_address("8.8.4.4")
print("Ping google.com: %f ms" % (wifi.radio.ping(ipv4)*1000))
```
2022-09-28 10:06:33 -05:00
..
internal_flash.c Additional missing-prototypes fixes 2021-11-10 10:55:53 -06:00
internal_flash.h Add initial RP2040 support 2021-01-20 19:16:56 -08:00
internal_flash_root_pointers.h Add initial RP2040 support 2021-01-20 19:16:56 -08:00
port.c Implement scan, connect, ping 2022-09-28 10:06:33 -05:00
rp2_cpu.s Add initial RP2040 support 2021-01-20 19:16:56 -08:00
usb.c Start of USB host API 2022-03-07 18:07:25 -08:00