This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Setting up WiFi on am335x starter kit

I have noticed the WiFi on my am335x starter kit works but after about 10 minutes I am no longer able to ping the unit from my Decktop PC.  The WiFi is still active and working on the unit but it can't be pinged.  Am I configuring the unit wrong?  Here is my wlan0 start up script that setups up the unit at power up...
#! /bin/sh

case "$1" in
  start)

    echo "-------------------------------------------------------------"
    echo "Setup wlan0 network connection for updates: 192.168.150.140"
    echo "-------------------------------------------------------------"
    echo ""
    ifconfig wlan0 192.168.150.140 netmask 255.255.255.224
    sleep 2
    route add default gw 192.168.150.129
    echo "nameserver 130.1.130.3" > /etc/resolv.conf
    sleep 2

    wpa_supplicant -d -Dnl80211 -c/etc/wpa_supplicant.conf -iwlan0 -B
    sleep 2
    wpa_cli -iwlan0 disconnect
    for i in `wpa_cli -iwlan0 list_networks | grep ^[0-9] | cut -f1`; do
wpa_cli -iwlan0             remove_network $i; done
    wpa_cli -iwlan0 add_network
    wpa_cli -iwlan0 set_network 0 auth_alg OPEN
    wpa_cli -iwlan0 set_network 0 key_mgmt NONE
    wpa_cli -iwlan0 set_network 0 mode 0
    wpa_cli -iwlan0 set_network 0 ssid '"iwhsblue"'
    wpa_cli -iwlan0 select_network 0
    wpa_cli -iwlan0 enable_network 0
    wpa_cli -iwlan0 reassociate
    sleep 2

    # We got on the wifi (hopefully), so update the time
    rdate -s nist1-ny2.ustiming.org # NYC Time for EST timezone
    echo "Got date from time server:"
    date

    ;;
  *)
    echo "Usage: /etc/init.d/wlan0-setup.sh start"
    exit 1
esac

exit 0

Any help is greatly appreciated, thanks in advance!

Nate
  • It may be an activity timeout on my wireless access point.  Adding a function to ping google every 30 seconds seems to have fixed my problem.  I am not sure if this is the best solution but it seems to work.  Any feedback on this?  Is there a better way?  Thanks!

    Nate