diff options
author | Tom Rondeau | 2010-11-21 19:44:47 -0500 |
---|---|---|
committer | Tom Rondeau | 2010-11-21 19:44:47 -0500 |
commit | 7ecc767e8fe6248d5e9372da8c7cfb9aacbd790b (patch) | |
tree | 6bf90df0dbd395c71988cc319058e2e1892d4d43 | |
parent | 716e497547b5e0f3e19481e4ca129bae114935f8 (diff) | |
download | gnuradio-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).
-rwxr-xr-x | gnuradio-examples/python/tags/test_file_tags.py | 2 |
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)) |