kopia lustrzana https://github.com/projecthorus/horusdemodlib
27 wiersze
1016 B
Plaintext
27 wiersze
1016 B
Plaintext
|
# Receive *centre* frequency, in Hz
|
||
|
# Note: The SDR will be tuned to RXBANDWIDTH/2 below this frequency.
|
||
|
RXFREQ=434200000
|
||
|
|
||
|
# Receiver Gain. Set this to 0 to use automatic gain control, otherwise if running a
|
||
|
# preamplifier, you may want to experiment with different gain settings to optimize
|
||
|
# your receiver setup.
|
||
|
# You can find what gain range is valid for your RTLSDR by running: rtl_test
|
||
|
GAIN=0
|
||
|
|
||
|
# Bias Tee Enable (1) or Disable (0)
|
||
|
BIAS=0
|
||
|
|
||
|
# Receiver PPM offset
|
||
|
PPM=0
|
||
|
|
||
|
# Frequency estimator bandwidth. The wider the bandwidth, the more drift and frequency error the modem can tolerate,
|
||
|
# but the higher the chance that the modem will lock on to a strong spurious signal.
|
||
|
# Note: The SDR will be tuned to RXFREQ-RXBANDWIDTH/2, and the estimator set to look at 0-RXBANDWIDTH Hz.
|
||
|
RXBANDWIDTH=10000
|
||
|
|
||
|
# Enable (1) or disable (0) modem statistics output.
|
||
|
# If enabled, modem statistics are written to stats.txt, and can be observed
|
||
|
# during decoding by running: tail -f stats.txt | python fskstats.py
|
||
|
STATS_OUTPUT=0
|
||
|
|