From 041427ca5cacf82bb50e9cdfe3f011ddc25f9f9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Retzler?= Date: Mon, 14 Mar 2016 12:21:42 +0100 Subject: [PATCH] Updated Adding support for new receiver hardware (markdown) --- Adding-support-for-new-receiver-hardware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Adding-support-for-new-receiver-hardware.md b/Adding-support-for-new-receiver-hardware.md index a52dba2..2c0f9ad 100644 --- a/Adding-support-for-new-receiver-hardware.md +++ b/Adding-support-for-new-receiver-hardware.md @@ -11,7 +11,7 @@ Notice that the command to be run by OpenWebRX is something like: The `rtl_sdr` tool is called with various commandline parameters, which are substituted from other settings (like center frequency, sampling rate, PPM). Then the `-` at the end says that `rtl_sdr` should output the samples **to the standard output instead of a file**. -There is another important setting: `format_conversion` will tell OpenWebRX that the RTL-SDR outputs 8-bit unsigned samples. We have to convert these to 32-bit floating point samples in order to precess them with `csdr`. The available conversion options are listed on the [csdr project page](https://github.com/simonyiszk/csdr#data-types). As a quick reference, you can use: +There is another important setting: `format_conversion` will tell OpenWebRX that the RTL-SDR outputs 8-bit unsigned samples. We have to convert these to 32-bit floating point samples in order to process them with `csdr`. The available conversion options are listed on the [csdr project page](https://github.com/simonyiszk/csdr#data-types). As a quick reference, you can use: * `csdr convert_s16_f` for receivers that output signed 16-bit integer data type (AFEDRI SDR, Softrock, etc.), * `csdr convert_s8_f` for receivers that output signed 8-bit integer data type (HackRF).