poudenes said:Last update for the P2V+ was after juli 2014. Does someone have installed the WebGUI and installed the latest firmware updates after then without any problem?
ckandelaars said:I tried to login with wifi only with no luck.
I was up to opkg update which was failing and I was sorting that out when I had the reboot.
Ran a port scan on 22 and saying closed. Any other way in?
poudenes said:And is there a option to bring the Repeater and Phantom back to factory settings without the WebUI?
ckandelaars said:Can ping ok and ports 23,53,80 are open. don't you mean 192.168.1.2 ?
There is no link between the repeater and the phantom.
Last login: Thu Sep 18 21:09:48 on ttys000
MacBook-Pro:~ chriskandelaars$ ping 192.168.1.2
PING 192.168.1.2 (192.168.1.2): 56 data bytes
64 bytes from 192.168.1.2: icmp_seq=0 ttl=64 time=3.142 ms
...
MacBook-Pro:~ chriskandelaars$ arp -an
? (192.168.1.2) at 60:60:1f:61:9f:2b on en1 ifscope [ethernet]
MacBook-Pro:~ chriskandelaars$
ckandelaars said:Is there no way of getting access through the other open ports?
ckandelaars said:I tried to bind it up again and just get a fail message.
iw phy phy0 set txpower fixed 1300 && iw phy phy0 set distance 1000 && exit
#!/bin/sh
while [ 1 ] ; do
TESTSTR="`/tmp/iwinfo wlan0 info | grep Tx-Power | cut -d ":" -f2 | cut -d " " -f2`"
if [ "$TESTSTR" != "13" ] ; then
iw phy phy0 set txpower fixed 1300
iw phy phy0 set distance 1000
fi
sleep 5
done
allemtura said:This screenshot from earlier on seems to be where transmit power can be adjusted: viewtopic.php?f=27&t=17704&start=10#p162301
That's because of a small glitch in /lib/wifi/mac80211.sh, it applies "txpower fixed" value to IF instead of PHY, even if it's located in the radio section of config. While this should work as well, in fact it's acting like "txpower limit" is applied, i.e. txpower is set automatically between 0 and the value you've specified.job2310 said:Correct, but bird side even if changed the output seems to stay at 3dBm, at least for me.
[ -n "$txpower" ] && iw phy "$phy" set txpower fixed "${txpower%%.*}00"
txpower=""
[ -n "$distance" ] && iw phy "$phy" set distance "$distance"
If you're not afraid of linux console, you may just vi /etc/config/wireless and set the following params in the radio section.allemtura said:Now that DCI has exposed PVFlyers "Interference Control Algorithm", I'd like to understand how to ensure the power levels are set automatically each time the Phantom boots up.
option distance '1000'
option txpower '14'
Just to clarify, original fpvbooster is a native ELF binary, I've written that shell script to illustrate its internal logic and make the published disassembled code easier to read for anyone who dares.allemtura said:DCI found the following loop
That's because of a small glitch in /lib/wifi/mac80211.sh, it applies "txpower fixed" value to IF instead of PHY, even if it's located in the radio section of config. While this should work as well, in fact it's acting like "txpower limit" is applied, i.e. txpower is set automatically between 0 and the value you've specified.dci said:job2310 said:Correct, but bird side even if changed the output seems to stay at 3dBm, at least for me.
[ -n "$txpower" ] && iw phy "$phy" set txpower fixed "${txpower%%.*}00"
txpower=""
[ -n "$distance" ] && iw phy "$phy" set distance "$distance"
We use essential cookies to make this site work, and optional cookies to enhance your experience.