kopia lustrzana https://github.com/Guenael/rtlsdr-wsprd
commit
c8834618df
19
README.md
19
README.md
|
|
@ -54,16 +54,20 @@ This application written in C does:
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
1. Install a Linux compatible distro on your device.
|
1. Install a Linux compatible distro on your device.
|
||||||
|
|
||||||
For Raspberry Pi, you can download official images here: https://www.raspberrypi.com/software/operating-systems/
|
For Raspberry Pi, you can download official images here: https://www.raspberrypi.com/software/operating-systems/
|
||||||
1. It's a good practice to update your OS. On a RaspberryPi, run this command usual:
|
|
||||||
|
2. It's a good practice to update your OS. On a RaspberryPi, run this command usual:
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get update && sudo apt-get upgrade
|
sudo apt-get update && sudo apt-get upgrade
|
||||||
```
|
```
|
||||||
1. Install dependencies & useful tools (for example, NTP for time synchronization). Example with a Debian based like Raspbian:
|
|
||||||
|
3. Install dependencies & useful tools (for example, NTP for time synchronization). Example with a Debian based like Raspbian:
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get update && sudo apt-get -y install build-essential clang cmake libfftw3-dev libusb-1.0-0-dev libcurl4-gnutls-dev ntp git
|
sudo apt-get update && sudo apt-get -y install build-essential clang cmake libfftw3-dev libusb-1.0-0-dev libcurl4-gnutls-dev ntp git
|
||||||
```
|
```
|
||||||
1. Install `rtl-sdr` library manually. **Do not use the librtlsdr-dev package on RaspberryPi** There is a know bug with this lib and rtlsdr_wsprd will not be able to get enough samples (don't decode anything & 100% CPU pattern).
|
|
||||||
|
4. Install `rtl-sdr` library manually. **Do not use the librtlsdr-dev package on RaspberryPi** There is a know bug with this lib and rtlsdr_wsprd will not be able to get enough samples (don't decode anything & 100% CPU pattern).
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/osmocom/rtl-sdr
|
git clone https://github.com/osmocom/rtl-sdr
|
||||||
cd rtl-sdr
|
cd rtl-sdr
|
||||||
|
|
@ -75,17 +79,20 @@ This application written in C does:
|
||||||
cd ../..
|
cd ../..
|
||||||
```
|
```
|
||||||
Note: You may have to re-plug you dongle if it was already connected, or play with `udev` if it is not automatically recognized.
|
Note: You may have to re-plug you dongle if it was already connected, or play with `udev` if it is not automatically recognized.
|
||||||
1. Clone this repository:
|
|
||||||
|
5. Clone this repository:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/Guenael/rtlsdr-wsprd
|
git clone https://github.com/Guenael/rtlsdr-wsprd
|
||||||
```
|
```
|
||||||
1. Build the application:
|
|
||||||
|
6. Build the application:
|
||||||
```bash
|
```bash
|
||||||
cd rtlsdr-wsprd
|
cd rtlsdr-wsprd
|
||||||
make
|
make
|
||||||
sudo make install
|
sudo make install
|
||||||
```
|
```
|
||||||
1. Finally, start the application with the right parameters/options for you (frequency, callsign, locator etc... Fake example below):
|
|
||||||
|
7. Finally, start the application with the right parameters/options for you (frequency, callsign, locator etc... Fake example below):
|
||||||
```bash
|
```bash
|
||||||
rtlsdr_wsprd -f 2m -c A1XYZ -l AB12cd -g 29
|
rtlsdr_wsprd -f 2m -c A1XYZ -l AB12cd -g 29
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Ładowanie…
Reference in New Issue