一行代码速查命令功能 apropos uhd_
uhd_find_devices: 能够打印输出连接至 PC 的 USRP 设备基本信息。 uhd_find_devices --args="addr=192.168.10.2" #表示仅查找连接至 PC,IP 地址为 192.168.10.2 的 USRP 设备;
uhd_find_devices --args==type=usrp2 #表示仅查找连接至 PC 的 USRP2。
uhd_usrp_probe: 能够打印输出连接至 PC 的 USRP 设备详细信息。 uhd_rx_cfile: 一个基于 GNU Radio 的 Python 程序,能够将USRP 接收到的信号采样后的数据直接储存到 PC。 locate uhd_rx_cfilesudo uhd_rx_cfile –f 2.45G ~/bin/test_uhd_cfile.bin
uhd_fft: 一个基于 GNU Radio 的 Python 程序,能够将 USRP2接收到的信号做 FFT 运算后以图形界面显示。 uhd_fft -huhd_fft -f 2.45G
benchmark_tx.py: 一个基于 GNU Radio 的 Python 程序,能够发送GMSK,BPSK 等调制信号的数据包。 locate benchmark_tx/usr/share/gnuradio/examples/digital/ofdm/benchmark_tx.py -h #your location which locate command find
sudo /usr/share/gnuradio/examples/digital/ofdm/benchmark_tx.py -f 935M --tx-gain=30 -v #表示以管理员权限运行程序,以中心频率为 935MHz 发送比特率为 100Kbps 的 GMSK调制信号,射频子板发送增益值为 30 的内插。
|