Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.11 KB

File metadata and controls

49 lines (39 loc) · 1.11 KB

pihpsdrmods

This script is for installing PiHPsdr onto a RPi4 RPi5.

This first script (pihpsdr_install.sh) specifically changes the screen resolution to 1366 x 768 with NO SOAPY support.

The second script (pihpsdr_install_soapy.sh) is for use with a 800 x 480 screen and it also enables SOAPY support.

Install the following first, if you want to use SOAPY.

sudo apt-get install -y git build-essential automake cmake

git clone https://github.com/pothosware/SoapySDR.git
cd SoapySDR
mkdir build
cd build
cmake ..
make
sudo make install
sudo ldconfig 

sudo apt-get install rtl-sdr librtlsdr-dev

git clone https://github.com/pothosware/SoapyRTLSDR.git
cd SoapyRTLSDR
mkdir build
cd build
cmake ..
make
sudo make install
sudo ldconfig 


git clone https://github.com/SDRplay/SoapySDRPlay
cd SoapySDRPlay
mkdir build
cd build
cmake ..
make
sudo make install
sudo ldconfig 

To download the SOAPY script and run it, use the following commands:

wget https://raw.githubusercontent.com/TechMindsYT/pihpsdrmods/refs/heads/main/pihpsdr_install_soapy.sh
sudo chmod +x pihpsdr_install_soapy.sh
./pihpsdr_install_soapy.sh