2021-12-14 02:48:12 +00:00
|
|
|
#!/bin/bash -x
|
2021-12-15 00:42:31 +00:00
|
|
|
# Run a test using the virtual sound cards, Python audio I/O
|
2021-12-14 02:48:12 +00:00
|
|
|
|
|
|
|
function check_alsa_loopback {
|
|
|
|
lsmod | grep snd_aloop >> /dev/null
|
|
|
|
if [ $? -eq 1 ]; then
|
|
|
|
echo "ALSA loopback device not present. Please install with:"
|
|
|
|
echo
|
|
|
|
echo " sudo modprobe snd-aloop index=1,2 enable=1,1 pcm_substreams=1,1 id=CHAT1,CHAT2"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
check_alsa_loopback
|
|
|
|
|
|
|
|
# make sure all child processes are killed when we exit
|
|
|
|
trap 'jobs -p | xargs -r kill' EXIT
|
|
|
|
|
2021-12-19 23:06:39 +00:00
|
|
|
python3 test_callback_rx.py --mode datac0 --frames 2 --bursts 3 --audiodev -2 --debug &
|
2021-12-14 20:17:36 +00:00
|
|
|
rx_pid=$!
|
2021-12-14 02:48:12 +00:00
|
|
|
sleep 1
|
2021-12-16 07:23:11 +00:00
|
|
|
python3 test_tx.py --mode datac0 --frames 2 --bursts 3 --audiodev -2
|
2021-12-14 20:17:36 +00:00
|
|
|
wait ${rx_pid}
|