Added new patron to the readme and fixed radio remove/disable bug

pull/327/head^2
AlexandreRouma 2021-09-12 19:12:23 +02:00
rodzic 22acf33c01
commit 5a2b0c9d79
4 zmienionych plików z 26 dodań i 0 usunięć

Wyświetl plik

@ -35,6 +35,7 @@ namespace sdrpp_credits {
};
const char* patrons[] = {
"Bob Logan",
"Croccydile",
"Daniele D'Agnelli",
"EB3FRN",

Wyświetl plik

@ -46,6 +46,7 @@ namespace dsp {
if (running) { return; }
xlator.start();
resamp.start();
running = true;
}
void stop() {
@ -53,6 +54,7 @@ namespace dsp {
if (!running) { return; }
xlator.stop();
resamp.stop();
running = false;
}
void setInSampleRate(float inSampleRate) {

Wyświetl plik

@ -353,6 +353,7 @@ I will soon publish a contributing.md listing the code style to use.
## Patrons
* Bob Logan
* Croccydile
* [Daniele D'Agnelli](https://linkedin.com/in/dagnelli)
* [EB3FRN](https://www.eb3frn.net/)

22
rpi_install.sh 100644
Wyświetl plik

@ -0,0 +1,22 @@
#!/bin/sh
set -e
[ $(id -u) = 0 ] && echo "Please do not run this script as root" && exit 100
echo "Installing dependencies"
sudo apt update
sudo apt install -y build-essential cmake git libfftw3-dev libglfw3-dev libglew-dev libvolk2-dev libsoapysdr-dev libairspyhf-dev libairspy-dev \
libiio-dev libad9361-dev librtaudio-dev libhackrf-dev librtlsdr-dev libbladerf-dev liblimesuite-dev p7zip-full wget
echo "Preparing build"
mkdir -p build
cd build
cmake .. -DOPT_BUILD_BLADERF_SOURCE=ON -DOPT_BUILD_LIMESDR_SOURCE=ON
echo "Building"
make
echo "Installing"
sudo make install
echo "Done!"