kopia lustrzana https://github.com/projecthorus/wenet
15 wiersze
556 B
Bash
Executable File
15 wiersze
556 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Start RX using a rtlsdr.
|
|
#
|
|
|
|
# Set CHANGEME to your callsign.
|
|
MYCALL=CHANGEME
|
|
|
|
cd ~/wenet/
|
|
python ssdv_upload.py $MYCALL &
|
|
python rx_gui.py &
|
|
# Uncomment the following line if using a V3 RTLSDR and need the Bias-Tee enabled.
|
|
# rtl_biast -b 1
|
|
rtl_sdr -s 923096 -f 440980000 -g 35 - | csdr convert_u8_f | csdr bandpass_fir_fft_cc 0.05 0.45 0.05 | csdr realpart_cf | csdr gain_ff 0.5 | csdr convert_f_s16 | ./fsk_demod 2XS 8 923096 115387 - - S 2> >(python fskdemodgui.py --wide) | ./drs232_ldpc - - -vv| python rx_ssdv.py --partialupdate 16
|