aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandreas128 <Andreas>2017-04-08 15:40:06 +0100
committerandreas128 <Andreas>2017-04-08 15:40:06 +0100
commit00b5c791e83cef685c44eb6de599b8ab408b201e (patch)
treeb0d40562e8270718f08207be91106821943ede5e
parent2aa99f6275e2530a8dd4d3be270e9d7a3633cd66 (diff)
downloadODR-StaticPrecorrection-00b5c791e83cef685c44eb6de599b8ab408b201e.tar.gz
ODR-StaticPrecorrection-00b5c791e83cef685c44eb6de599b8ab408b201e.tar.bz2
ODR-StaticPrecorrection-00b5c791e83cef685c44eb6de599b8ab408b201e.zip
Add cut_pause.sh to cut empty transmission frames from iq file
-rw-r--r--cut_pause.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/cut_pause.sh b/cut_pause.sh
new file mode 100644
index 0000000..567ab62
--- /dev/null
+++ b/cut_pause.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+#Cut the first two transmission frames of length 96ms plus 1ms
+#Samplerate 8192000 Samples / Second
+#64 Bit per complex float
+#(96*2 + 1) / 1000 * 8192000 * 64 / 8
+
+dd bs=12648448 skip=1 if=test_dat/out.iq of=out_cut_dpd.iq