Skip to content
This repository has been archived by the owner on Jan 13, 2020. It is now read-only.

Using OpenWebRX with AFEDRI SDR

András Retzler edited this page Mar 14, 2016 · 12 revisions

You should create a script in the OpenWebRX directory to run sdr_commander to initialize the receiver, and then run OpenWebRX.

start_afedri.sh:

#!/bin/bash
SAMPLE_RATE=1536000
GAIN=17
FREQUENCY=7100000
./sdr_commander  -t192.168.0.8 -sn$SAMPLE_RATE -g$GAIN -q0
./sdr_commander  -t192.168.0.8 -f$FREQUENCY
sleep 1
python openwebrx.py

In config_webrx.py, you should change these settings:

samp_rate = 192000
center_freq = 7080000
start_rtl_command="sdr_split -O -s{samp_rate} -f{center_freq}".format(rf_gain=rf_gain, center_freq=center_freq, samp_rate=samp_rate) 
format_conversion="csdr convert_s16_f"

The source of this information is this experimental version of OpenWebRX that Alex, 4Z5LV made. (In addition, with the instructions on this page you should be able to use a recent version of OpenWebRX as well.)

Clone this wiki locally