You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 13, 2020. It is now read-only.
András Retzler edited this page Apr 1, 2017
·
3 revisions
This will replay the I/Q clip in a loop.
Record raw I/Q data with command-line tool.
cd openwebrx
rtl_sdr -s250000 -f145000000 iqfile.iq
Edit config_webrx.py:
samp_rate=250000bytes_per_sample=1#should be 1 for u8/s8, 2 for s16, 4 for floatstart_rtl_command="(while true; do cat iqfile.iq; done) | csdr flowcontrol {data_rate} 10 ".format(data_rate=2*samp_rate*bytes_per_sample)
format_conversion="csdr convert_u8_f"
Note: You should especially take care that the format and the sampling rate set here should be the same as for your recorded I/Q file!
A version that also works for 16-bit I/Q files:
format_conversion="csdr convert_s16_f"start_rtl_command="(while true; do cat iqfile.iq; done) | csdr flowcontrol {data_rate} 10 ".format(data_rate=2*samp_rate*(2if ("u16"informat_conversion) or ("s16"informat_conversion) else1))