We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIRMWARE: 3.4 READ ONLY
The camera does not want to connect to the wifi, but if i do
ip link set wlan0 up iwconfig wlan0 essid "K!DA6A 2.4GHZ" wpa_supplicant -c /tmp/mnt/mmc01/0/wpa_supplicant.conf -i wlan0
it connects and works like a charm
wpa_supplicant.conf - contains the SSID of the network and the psk. I have created it in the memory card
network={ ssid="home" scan_ssid=1 key_mgmt=WPA-PSK psk="very secret passphrase" }
Is there a way to automatically run this command after camera initialisation?
The text was updated successfully, but these errors were encountered:
Hello! krcenov
I encounted same probrem. How about this code. It works my enviroment.
1.make .sh file and put it into the dir that is belong to debug_cmd.sh.
2.edit debug_cmd.sh last row. (sleep 30 && /media/changenetwork.sh) &
#!/bin/sh #changenetwork.sh
#change wifi to ownnet-work
#add wpa_supplicant.conf cat << EOS >> /tmp/wpa_supplicant.conf update_config=1 network={ ssid="..." psk="..." }
EOS
#kill dhcpd pkill udhcpd
#kill hostapd pkill hostapd
#down wlan0 ip link set wlan0 down
#not found dhclient, so change ip address manually ifconfig wlan0 192.168.1.155
#wlan0 up ip link set wlan0 up
sleep 5
#wpa_supplicant start wpa_supplicant -Dwext -iwlan0 -c/tmp/wpa_supplicant.conf -B
Sorry, something went wrong.
Will try! Thank you :)
No branches or pull requests
FIRMWARE: 3.4 READ ONLY
The camera does not want to connect to the wifi, but if i do
it connects and works like a charm
wpa_supplicant.conf - contains the SSID of the network and the psk. I have created it in the memory card
Is there a way to automatically run this command after camera initialisation?
The text was updated successfully, but these errors were encountered: