chore(readme): seq fix manual

pull/90/head
Guenael 2021-12-15 18:48:51 -05:00
rodzic 9f5d34dd8d
commit f79d9d2b00
1 zmienionych plików z 13 dodań i 6 usunięć

Wyświetl plik

@ -54,16 +54,20 @@ This application written in C does:
## Installation
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/
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
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
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
git clone https://github.com/osmocom/rtl-sdr
cd rtl-sdr
@ -75,17 +79,20 @@ This application written in C does:
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.
1. Clone this repository:
5. Clone this repository:
```bash
git clone https://github.com/Guenael/rtlsdr-wsprd
```
1. Build the application:
6. Build the application:
```bash
cd rtlsdr-wsprd
make
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
rtlsdr_wsprd -f 2m -c A1XYZ -l AB12cd -g 29
```