mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-12-26 10:58:29 +01:00
Added new patron to the readme and fixed radio remove/disable bug
This commit is contained in:
parent
22acf33c01
commit
5a2b0c9d79
@ -35,6 +35,7 @@ namespace sdrpp_credits {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const char* patrons[] = {
|
const char* patrons[] = {
|
||||||
|
"Bob Logan",
|
||||||
"Croccydile",
|
"Croccydile",
|
||||||
"Daniele D'Agnelli",
|
"Daniele D'Agnelli",
|
||||||
"EB3FRN",
|
"EB3FRN",
|
||||||
|
@ -46,6 +46,7 @@ namespace dsp {
|
|||||||
if (running) { return; }
|
if (running) { return; }
|
||||||
xlator.start();
|
xlator.start();
|
||||||
resamp.start();
|
resamp.start();
|
||||||
|
running = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void stop() {
|
void stop() {
|
||||||
@ -53,6 +54,7 @@ namespace dsp {
|
|||||||
if (!running) { return; }
|
if (!running) { return; }
|
||||||
xlator.stop();
|
xlator.stop();
|
||||||
resamp.stop();
|
resamp.stop();
|
||||||
|
running = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setInSampleRate(float inSampleRate) {
|
void setInSampleRate(float inSampleRate) {
|
||||||
|
@ -353,6 +353,7 @@ I will soon publish a contributing.md listing the code style to use.
|
|||||||
|
|
||||||
## Patrons
|
## Patrons
|
||||||
|
|
||||||
|
* Bob Logan
|
||||||
* Croccydile
|
* Croccydile
|
||||||
* [Daniele D'Agnelli](https://linkedin.com/in/dagnelli)
|
* [Daniele D'Agnelli](https://linkedin.com/in/dagnelli)
|
||||||
* [EB3FRN](https://www.eb3frn.net/)
|
* [EB3FRN](https://www.eb3frn.net/)
|
||||||
|
22
rpi_install.sh
Normal file
22
rpi_install.sh
Normal file
@ -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!"
|
Loading…
Reference in New Issue
Block a user