run HDSDR with usrp b210
there is very few topic for this on the internet and some customer ask me this so i decide to write it down.
the only useful information i can find for running HDSDR with usrp b210 is http://spench.net/r/USRP_Interfaces
but it is still complicated and all it do is generate the usrp related files for
Read
PA LNA duplexer usage
1. connection:
my PA LNA typically is a integrated product.
PA IN port connect to usrp TX port;
PA OUT port connect to duplexer TX port;
LNA OUT port connect to usrp RX port;
LNA IN port connect to duplexer RX port;
duplexer ANT port connect to antenna;
reference picture below
for the power cable a
Read
install gqrx in ubuntu 16.04
just run:
sudo apt-get install qt5-qmake
sudo apt-get install qtbase5-dev
sudo apt-get install pkg-config
sudo apt-get install libqt5svg5-dev
export QT_SELECT=qt5
git clone https://github.com/csete/gqrx.git
cd gqrx
git checkout v2.11.5
mkdir build
cd build
qmake ../gqrx.pro
make
sudo ./gqrx
Read
run gr-iridium with usrp b210
first install uhd and gnuradio. you can reference this to install uhd and gnuradio:
http://zhixun-wireless.top/install-uhd-and-gnuradio-on-ubuntu-1604
then install gr-osmocom. just run:
git clone git://git.osmocom.org/gr-osmosdr
cd gr-osmosdr/
git checkout gr3.7
mkdir build
cd build/
cmake ../
make
Read
install uhd and gnuradio on windows
download gnuradio for windows from: http://www.gcndevelopment.com/gnuradio/downloads.htm
i use version 3.8 which is work fine for me.
run the gnuradio install exe it will also install uhd automaticly.
after installation finish you can see this in the windows Start Menu.
run USRP Sp
Read
install usrp support package for matlab
1. install matlab
2. choose install hardware support package like below
3. search "USRP", install usrp support package.
after this you can open usrp example to run.
for matlab version lower than R2017 may have this error "Fatal Alert: Protocol_version" during installing hardware support package. f
Read
run osmo-trx with openbts
reference this http://zhixun-wireless.top/install-and-configure-openbts-with-b210-on-ubuntu-1604 install openbts first.
after installing openbts then run:
sudo apt-get install build-essential libtool libtalloc-dev libsctp-dev shtool autoconf automake git-core pkg-config make gcc gnutls-dev python-mi
Read
install B210 driver for labview
1. install labview or labview NXG or labview Communications System Design Software.
2. Visit www.ni.com/info search keyword "usrpdriver", it will go to the page of usrp driver. download the driver.
3. install the usrp driver. using default for all configure during installation.
after installation of
Read
run gps-sdr-sim with usrp b210
the instrunction of gps-sdr-sim can be found in its readme:
https://github.com/osqzss/gps-sdr-sim
however it did not tell how to use usrp b210 to send the generated gps signal.
assumming you have generate gps signal file gpssim.bin and you have install uhd(reference http://www.zhixun-wireless.top/in
Read
install uhd and gnuradio on ubuntu 16.04
this article introduce install uhd and gnuradio on ubuntu 16.04
1. install uhd
ubuntu 16.04 apt-get have uhd package but it is old version.
if you are from China, I suggest you change apt-get source to other. I use 清华大学 source which work fine for me, open /etc/apt/sources.list and replace all the co
Read
install and configure srsran(srslte) enb epc ue on ubuntu 16.04(also works for ubuntu 18.04 and 20.04)
this article introduce install and configure srslte enb epc on ubuntu.
1. install the required package for srslte:
sudo apt-get install cmake libfftw3-dev libmbedtls-dev libboost-program-options-dev libconfig++-dev libsctp-dev libuhd-dev libuhd003 uhd-host
2. download and compile srslte:
git clone h
Read
install and configure openbts with B210 on ubuntu 16.04
1. install openbts and uhd
if you are from China, I suggest you change apt-get source to other. I use 清华大学 source which work fine for me, open /etc/apt/sources.list and replace all the content as below:
# deb cdrom:[Ubuntu 16.04 LTS _Xenial Xerus_ - Release amd64 (20160420.1)]/ xenial main restricte
Read