Resolves race condition in #106 by moving the call to cyw43_wifi_ap_set_up after the call to cyw43_cb_tcpip_init in cyw43_wifi_set_up. Since bringing the link up by cyw43_wifi_ap_set_up completes asynchronously it is now guaranteed that the setting of NETIF_FLAG_LINK_UP will not get clobbered by cyw43_cb_tcpip_init if it finishes too early.
Resolves race condition in #106 by moving the call to
cyw43_wifi_ap_set_up
after the call tocyw43_cb_tcpip_init
incyw43_wifi_set_up
. Since bringing the link up bycyw43_wifi_ap_set_up
completes asynchronously it is now guaranteed that the setting ofNETIF_FLAG_LINK_UP
will not get clobbered bycyw43_cb_tcpip_init
if it finishes too early.This will also resolve https://github.com/adafruit/circuitpython/issues/8718.