Peter Harper
Peter Harper
Requires you to specify the server ip address when running cmake, e.g. -DIPERF_SERVER_IP=1.2.3.4 Fixes #255
Complains that xstr is not defined.
Adds a DNS server and changes the AP example to use it The AP example now serves a web page /ledtest that allows you to turn the led on and...
The access point example doesn't do anything particularly useful and requires you to enter the ip address of the device you're connecting to. It could do with some improvements.
I have a change that adds mbedtls support to the sd. We need an example to show how it's used. See https://github.com/raspberrypi/pico-sdk/issues/893
The iperf server is useful for testing performance. Currently it's not in the list of apps added by the lwip interface library in pico-extras.
Clone mbedtls somewhere and define PICO_MBEDTLS_PATH to point to the absolute path, e.g. export PICO_MBEDTLS_PATH=~/mbedtls The mbedtls library must be mbedtls-2.28, e.g. git clone [email protected]:Mbed-TLS/mbedtls.git -b mbedtls-2.28 Rebuild the sdk,...
It would be helpful to add mbedtls support to the sdk to make it easier to use tls with picow
stdout_serialize_begin can cause a deadlock in some cases. Testing suggests 7ms is the max time it can wait, so give up after 15ms. Fixes #1039
See https://github.com/georgerobotics/cyw43-driver/issues/33