2015-11-29 20:54:09 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# Run this script on a Raspberry Pi 2, while running test_shift_remote.grc on your PC.
|
|
|
|
# It allows you to debug the NEON-accelerated version of specific DSP algorithms on the target hardware.
|
|
|
|
TEMPSCRIPT="/tmp/test_shift_remote_exec.sh"
|
2015-11-30 06:46:06 +08:00
|
|
|
echo '#!/bin/sh\ncsdr shift_addfast_cc -0.1' > $TEMPSCRIPT
|
2015-11-29 20:54:09 +08:00
|
|
|
cat $TEMPSCRIPT
|
|
|
|
chmod +x $TEMPSCRIPT
|
|
|
|
ncat -vvl 5321 -e $TEMPSCRIPT
|
|
|
|
rm $TEMPSCRIPT
|