We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1adb05f commit ca819e7Copy full SHA for ca819e7
1 file changed
rootfs/etc/s6-overlay/scripts/acarsdec
@@ -43,6 +43,12 @@ if [[ -n "${SOAPYSDR}" ]]; then
43
# airspy runs at 3MSPS so needs a different sample rate multiplier
44
RTLMULT="240"
45
fi
46
+ # newer versions of acarsdec default to lower sample rates with soapy
47
+ # to avoid compatibility issues, set the old default of 160 if no RTLMULT was given
48
+ # with rtl-sdr this isn't necessary
49
+ if [[ -z "${RTLMULT}" ]]; then
50
+ RTLMULT="160"
51
+ fi
52
53
54
if [[ -z "${RTL_SERIAL}" ]] && [[ -n "${SERIAL}" ]]; then
0 commit comments