- Download
xrit-rx.service
- Edit
WorkingDirectory
inxrit-rx.service
to the location ofxrit-rx
on your system - Copy
xrit-rx.service
to/etc/systemd/system
(sudo cp xrit-rx.service /etc/systemd/system
) - Reload systemd daemons (
sudo systemctl daemon-reload
) - Start
xrit-rx
service (sudo systemctl start xrit-rx.service
) - Check service is running (
systemctl status xrit-rx.service
) - Check console output of
xrit-rx
(sudo journalctl -u xrit-rx.service
) - Enable service to run at startup (
sudo systemctl enable xrit-rx.service
)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GNURadio + gr-iio setup (ADALM-PLUTO plugged in) | |
cd ~/Documents | |
mkdir PlutoSDR | |
cd PlutoSDR/ | |
sudo apt-get install git python-pip | |
pip install --upgrade pip | |
pip install setuptools | |
sudo pip install git+https://github.com/gnuradio/pybombs.git | |
pybombs auto-config | |
pybombs recipes add-defaults |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install unzip libcurl4-openssl-dev pkg-config git build-essential dvb-apps git build-essential debhelper gettext libssl-dev zlib1g-dev libcurl4-gnutls-dev curl cmake libavahi-client-dev liburiparser-dev | |
cd ~/Documents | |
git clone https://github.com/tvheadend/tvheadend | |
cd tvheadend | |
AUTOBUILD_CONFIGURE_EXTRA="--disable-libvpx --disable --disable-libvpx_static --disable-bintray_cache --enable-hdhomerun_client" ./Autobuild.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<?grc format='1' created='3.7.13'?> | |
<flow_graph> | |
<timestamp>Sat Jul 20 10:45:09 2019</timestamp> | |
<block> | |
<key>options</key> | |
<param> | |
<key>author</key> | |
<value></value> | |
</param> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install dependencies | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install build-essential cmake zlib1g-dev libairspy-dev rtl-sdr librtlsdr-dev | |
sudo reboot | |
# Install goesrecv | |
cd ~ | |
git clone --recursive https://github.com/sam210723/goestools | |
cd goestools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install -y git make gfortran gcc libpng-dev libx11-dev libjpeg-dev libexif-dev dos2unix pgplot5 libgsl-dev fftw3 libfftw3-dev | |
git clone https://github.com/cbassa/strf | |
cd strf | |
make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<?grc format='1' created='3.7.13'?> | |
<flow_graph> | |
<timestamp>Mon Nov 27 10:10:51 2017</timestamp> | |
<block> | |
<key>options</key> | |
<param> | |
<key>author</key> | |
<value>sam210723</value> | |
</param> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tsp -I dvb --device-name /dev/dvb/adapter0:1 --lnb 5150 --delivery-system "DVB-S2" --frequency 4148000000 --modulation QPSK --symbol-rate 2586148 --fec-inner "3/5" --roll-off 0.2 --polarity "horizontal" -P mpe --pid 0x03E9 --udp-forward --log -O drop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
false-colour.py | |
https://github.com/sam210723/himawari-rx | |
Generates false colour images from multiple grayscale channels | |
""" | |
import argparse | |
import colorama | |
from colorama import Fore, Back, Style |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upload: hardware.bin firmware.bin | |
tinyprog -p hardware.bin -u firmware.bin | |
build: hardware.bin firmware.bin | |
echo "Complete" | |
hardware.blif: hardware.v spimemio.v simpleuart.v picosoc.v picorv32.v | |
yosys -ql hardware.log -p 'synth_ice40 -top hardware -json hardware.json' $^ |
OlderNewer