I have recently downloaded the current sdcard image for the ultra96v2. Not only that, I have created an image via a petalinux build. Both behave the same way.
when connected via serial port on the jtag pod, after "./wifi.sh" I am getting endless streams of "Sending discover...".
In another post I have seen setup instructions as follows: I have done all of the below but with the same result.
Also, I have a Click Board Ethernet pod, which I am plugged into, but I can not make ethernet connection to the ultra96. I would like to communicate with my ultra96 via some kind of networking.
Before bringing up the WiFi interface you must first edit the /home/root/wpa_supplicant.conf file with the correct SSID and security password for your WiFi access point. Once that is done you can run the supplied /home/root/wifi.sh script to copy the wpa_supplicant.conf file to /etc, load the kernel modules for the driver, and bring up the WiFi interface:
#Copy the supplied wpa_supplicant.conf file to /etc
#!!!NEED TO EDIT WITH SSID & PASSWORD FIRST!!!
cp -f /home/root/wpa_supplicant.conf /etc
# Load ATWILC3000 driver
modprobe wilc-sdio
# bring up interface
ifconfig wlan0 up
#Run wpa_supplicant for secure networking:
wpa_supplicant -Dnl80211 -iwlan0 -c/etc/wpa_supplicant.conf -B
#To add DHCP:
udhcpc -i wlan0
Thank You
Tom