mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-12-23 10:53:54 +02:00
fd27bdc442
- collect: set up a test transmission at each available frequency, then then record the signal seen by the USRP2 - norm: extract parameters necessary for normalization - viz: visualize the spectrum with gnuplot - row: generate rows of spectra with "viz"
15 lines
344 B
Bash
Executable File
15 lines
344 B
Bash
Executable File
#!/bin/sh
|
|
if ! [ "$1" ]; then
|
|
echo "usage: $0 prefix" 2>&1
|
|
exit 1
|
|
fi
|
|
f=2405
|
|
while [ $f -le 2480 ]; do
|
|
f1=`expr $f + 1`
|
|
atrf-txrx -f $f -p 4 -T -0.5 \
|
|
'sleep 1; usrp2_rx_cfile.py -d 16 -g 46 -f '$f'M -N 1M '$1-$f
|
|
atrf-txrx -f $f -p 4 -T +0.5 \
|
|
'sleep 1; usrp2_rx_cfile.py -d 16 -g 46 -f '$f1'M -N 1M '$1-$f1
|
|
f=`expr $f + 5`
|
|
done
|