summaryrefslogtreecommitdiff
path: root/gr-atsc/src/python/README
diff options
context:
space:
mode:
authorcswiger2007-04-23 10:45:42 +0000
committercswiger2007-04-23 10:45:42 +0000
commitd049678e49aefaa823ce45bd9310e2e43c93e1cf (patch)
treeed7b5a030611df1e4ca916bf19717a165e1bab9f /gr-atsc/src/python/README
parentaaf51ed7d99ba7cb9badd38c15e8643425b8bf78 (diff)
downloadgnuradio-d049678e49aefaa823ce45bd9310e2e43c93e1cf.tar.gz
gnuradio-d049678e49aefaa823ce45bd9310e2e43c93e1cf.tar.bz2
gnuradio-d049678e49aefaa823ce45bd9310e2e43c93e1cf.zip
Fixed atsc_field_sync_demux to consume input even when not creating
output. Added python files to make a complete 2.x atsc receiver, but it is not fully working. It will happily produce the exact same amount of transport stream output as a working system but has errors in the data. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@5081 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-atsc/src/python/README')
-rw-r--r--gr-atsc/src/python/README32
1 files changed, 32 insertions, 0 deletions
diff --git a/gr-atsc/src/python/README b/gr-atsc/src/python/README
new file mode 100644
index 000000000..c5dd4af93
--- /dev/null
+++ b/gr-atsc/src/python/README
@@ -0,0 +1,32 @@
+Currently the best, fastest software decode is by using
+19.2MSps over 5 processes.
+
+1) Capture data - adjust gain (-g) frequency (-f) and which side
+the tvrx is on to fit your local setup:
+
+usrp_rx_cfile -R B -d 10 -g 65 -f 503e6 atsc_data_6-4m_complex
+
+
+2) Make pipes:
+
+mkfifo /tmp/atsc_pipe_1
+mkfifo /tmp/atsc_pipe_2
+mkfifo /tmp/atsc_pipe_3
+mkfifo /tmp/atsc_pipe_4
+mkfifo /tmp/atsc_pipe_5
+
+3) In seperate windows run processes:
+
+./interp.py <input rf data at 6.4Msps>
+./xlate.py
+./fpll.py
+./btl-fsd.py
+./viterbi-out.py <output mpeg transport stream>
+
+
+Status: Not fully working.
+
+Currently gr-atsc 2.x will produce the exact amount of data as a working system,
+but there are a some differences in the output. If you substitute the btl-fsd.py
+block with the corresponding code from gnuradio-0.9 it works.
+