mirror of https://github.com/OpenIPC/firmware.git
Merge pull request #266 from cronyx/master
added radio_port, udp_port and fec settings to wfb.confpull/268/head
commit
e880512b5d
|
@ -12,6 +12,10 @@ channel=`cat ${config} | grep channel | cut -f 2 -d '='`
|
|||
bandwidth=`cat ${config} | grep bandwidth | cut -f 2 -d '='`
|
||||
stbc=`cat ${config} | grep stbc | cut -f 2 -d '='`
|
||||
mcs_index=`cat ${config} | grep mcs_index | cut -f 2 -d '='`
|
||||
udp_port=`cat ${config} | grep udp_port | cut -f 2 -d '='`
|
||||
radio_port=`cat ${config} | grep radio_port | cut -f 2 -d '='`
|
||||
rs_k=`cat ${config} | grep rs_k | cut -f 2 -d '='`
|
||||
rs_n=`cat ${config} | grep rs_n | cut -f 2 -d '='`
|
||||
|
||||
load_rtl() {
|
||||
modprobe cfg80211
|
||||
|
@ -40,7 +44,7 @@ load_interface() {
|
|||
}
|
||||
|
||||
start_wfb() {
|
||||
wfb_tx -p 1 -u 5600 -K ${keydir}/drone.key -B ${bandwidth} -M ${mcs_index} -S ${stbc} ${wlan} &
|
||||
wfb_tx -p ${radio_port} -u ${udp_port} -K ${keydir}/drone.key -B ${bandwidth} -M ${mcs_index} -S ${stbc} -k ${rs_k} -n ${rs_n} ${wlan} &
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
|
|
|
@ -6,3 +6,7 @@ channel=14
|
|||
bandwidth=20
|
||||
stbc=1
|
||||
mcs_index=1
|
||||
radio_port=3
|
||||
udp_port=5600
|
||||
rs_k=8
|
||||
rs_n=12
|
||||
|
|
Loading…
Reference in New Issue