From f79d9d2b00279e7b90ef171e822d93f39590eba2 Mon Sep 17 00:00:00 2001 From: Guenael Date: Wed, 15 Dec 2021 18:48:51 -0500 Subject: [PATCH] chore(readme): seq fix manual --- README.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a084f89..c832398 100644 --- a/README.md +++ b/README.md @@ -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 ```