Updated gr-atsc README
authorcswiger <cswiger@221aa14e-8319-0410-a670-987f0aec2ac5>
Fri, 27 Apr 2007 18:35:40 +0000 (18:35 +0000)
committercswiger <cswiger@221aa14e-8319-0410-a670-987f0aec2ac5>
Fri, 27 Apr 2007 18:35:40 +0000 (18:35 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@5156 221aa14e-8319-0410-a670-987f0aec2ac5

gr-atsc/src/python/README

index c5dd4af933da7a76a7c257df07fe953d91f8121c..fb9ec71e381b69e3381566b6be6349405d17b4c3 100644 (file)
@@ -1,13 +1,18 @@
-Currently the best, fastest software decode is by using
-19.2MSps over 5 processes.
+Decoding ATSC using 19.2MSps rate over 5 processes
+--------------------------------------------------
 
-1) Capture data - adjust gain (-g) frequency (-f) and which side
+1) Verify signal, adjust antenna and find best gain setting using usrp_fft.py,
+station frequency from the fcc video database, and decimation of 10.
+
+2) 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 
+usrp_rx_cfile.py -R B -d 10 -g 65 -f 503e6 atsc_data_6-4m_complex 
 
+You probably still need fast disks to take the data, like a raid-0 set of
+striped sata drives. Make sure there are no or very few Ou overruns.
 
-2) Make pipes:
+3) Make pipes:
 
 mkfifo /tmp/atsc_pipe_1
 mkfifo /tmp/atsc_pipe_2
@@ -15,7 +20,7 @@ mkfifo /tmp/atsc_pipe_3
 mkfifo /tmp/atsc_pipe_4
 mkfifo /tmp/atsc_pipe_5
 
-3) In seperate windows run processes:
+4) In seperate windows run processes:
 
 ./interp.py <input rf data at 6.4Msps>
 ./xlate.py
@@ -24,9 +29,4 @@ mkfifo /tmp/atsc_pipe_5
 ./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.