summaryrefslogtreecommitdiff
path: root/gnuradio-examples
diff options
context:
space:
mode:
authorTom Rondeau2010-11-21 19:44:47 -0500
committerTom Rondeau2010-11-21 19:44:47 -0500
commit7ecc767e8fe6248d5e9372da8c7cfb9aacbd790b (patch)
tree6bf90df0dbd395c71988cc319058e2e1892d4d43 /gnuradio-examples
parent716e497547b5e0f3e19481e4ca129bae114935f8 (diff)
downloadgnuradio-7ecc767e8fe6248d5e9372da8c7cfb9aacbd790b.tar.gz
gnuradio-7ecc767e8fe6248d5e9372da8c7cfb9aacbd790b.tar.bz2
gnuradio-7ecc767e8fe6248d5e9372da8c7cfb9aacbd790b.zip
Updating test_file_tags.py to use new file tagger interface (sample rate of 1 means time stamp on files is based solely on the item time).
Diffstat (limited to 'gnuradio-examples')
-rwxr-xr-xgnuradio-examples/python/tags/test_file_tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-examples/python/tags/test_file_tags.py b/gnuradio-examples/python/tags/test_file_tags.py
index a658256c7..4ff4549ef 100755
--- a/gnuradio-examples/python/tags/test_file_tags.py
+++ b/gnuradio-examples/python/tags/test_file_tags.py
@@ -14,7 +14,7 @@ def main():
ann = gr.annotator_alltoall(1000000, gr.sizeof_short)
tagger = gr.burst_tagger(gr.sizeof_short)
- fsnk = gr.tagged_file_sink(gr.sizeof_short)
+ fsnk = gr.tagged_file_sink(gr.sizeof_short, 1)
tb = gr.top_block()
tb.connect(src, thr, (tagger, 0))