SDR mit dem Rad1o Badge vom CCCamp2015

Alles rund Hard- und Software zum Thema Amateurfunk
Post Reply
User avatar
h3rb3rn
Administrator
Posts: 189
Joined: Mon 9. Feb 2015, 23:29

SDR mit dem Rad1o Badge vom CCCamp2015

Post by h3rb3rn »

Entwurf vom 22.09.2017

Quellen:

https://rad1o.badge.events.ccc.de/howto:use_hackrf
https://github.com/gnuradio/pybombs
https://github.com/muccc/sdr-workshop
https://github.com/rrobotics/hackrf-tes ... r/fm_radio

Installation der GNU Radio Companion unter Ubuntu

Code: Select all

sudo bash
Rad1o Badge im HackRF Mode unter Linux einbinden

Code: Select all

echo "# module blacklisted for radi1o / gqrx usage" >> /etc/modprobe.d/blacklist.conf
echo "blacklist hackrf" >> /etc/modprobe.d/blacklist.conf

echo "SUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"1d50\", ATTRS{idProduct}==\"6089\", MODE:=\"0666\"" >> /etc/udev/rules.d/51-rad1o.rules
echo "SUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"1d50\", ATTRS{idProduct}==\"cc15\", MODE:=\"0666\"" >> /etc/udev/rules.d/51-rad1o.rules

echo "USB_BLACKLIST=\“1d50:cc15 1d50:6089\”" >> /etc/default/tlp
Vorbereitung

Code: Select all

apt install git python-pip
Installation

Code: Select all

cd ~
git clone --recursive https://github.com/pybombs/pybombs.git
cd pybombs
pybombs install hackrf gnuradio gr-osmosdr
pip install --upgrade git+https://github.com/gnuradio/pybombs.git
python setup.py build
python setup.py install
pybombs auto-config
pybombs recipes add-defaults
pybombs prefix init ~/prefix -a myprefix -R gnuradio-default
echo "source ~/prefix/setup_env.sh" >> ~/.bashrc
pybombs env 
GnuRadio starten

Code: Select all

gnuradio-companion
GnuRadio
GnuRadio
Workshops zum rad1o Badge

gibt es unter https://github.com/muccc/sdr-workshop und eine Linkliste unter https://realraum.at/wiki/doku.php?id=workshop:r3rad1o
Attachments
install_rad1o.sh
Installer Script als root (sudo) ausführen
(915 Bytes) Downloaded 612 times
fm_radio_rx.grc
GnuRadio Prgoramm File
(20.5 KiB) Downloaded 840 times
Post Reply