#!/bin/sh
# blkx3 - a bash script to feed I/Q data from a pulse audio device into baudline
SAMPLE_RATE=48000
BL_BIN=~/bin/baudline_1.08_linux_x86_64/baudline
parec --format=s16le --channels=2 --rate=$SAMPLE_RATE --latency-msec=5 | \
$BL_BIN -scrollcontrol -record -stdin -channels 2 -quadrature -samplerate \
$SAMPLE_RATE -basefrequency $1
You may need to change the path to baudline in the script and maybe also the sample rates. The script takes the baseband centre frequency as its only parameter.
$ blkx3.sh 7184500
2 comments:
Are you feeding fldigi with the audio or the i/q input from your KX3?
Hi Dirk,
I'm using PulseAudio devices for both the I/Q and audio out of the KX3. I can feed both signals into multiple software programs. I'm feeding fldigi from the SignalinkUSB that I use as a soundcard for digimodes. The I/Q output is fed into a Griffin iMic soundcard (not so great) via a stereo line isolator.
Post a Comment