commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r4753 - gnuradio/branches/developers/jcorgan/frac/gnur


From: jcorgan
Subject: [Commit-gnuradio] r4753 - gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr
Date: Wed, 14 Mar 2007 15:33:30 -0600 (MDT)

Author: jcorgan
Date: 2007-03-14 15:33:30 -0600 (Wed, 14 Mar 2007)
New Revision: 4753

Added:
   
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py
Modified:
   
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/Makefile.am
Log:
Added minimal QA for gr_fractional_interpolator_ff

Modified: 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/Makefile.am
===================================================================
--- 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/Makefile.am
  2007-03-14 21:18:53 UTC (rev 4752)
+++ 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/Makefile.am
  2007-03-14 21:33:30 UTC (rev 4753)
@@ -60,6 +60,7 @@
        qa_fft_filter.py                \
        qa_filter_delay_fc.py           \
        qa_flow_graph.py                \
+       qa_fractional_interpolator.py   \
        qa_frequency_modulator.py       \
        qa_fsk_stuff.py                 \
        qa_goertzel.py                  \

Added: 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py
===================================================================
--- 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py
                                (rev 0)
+++ 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py
        2007-03-14 21:33:30 UTC (rev 4753)
@@ -0,0 +1,38 @@
+#!/usr/bin/env python
+#
+# Copyright 2007 Free Software Foundation, Inc.
+# 
+# This file is part of GNU Radio
+# 
+# GNU Radio is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+# 
+# GNU Radio is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+# 
+# You should have received a copy of the GNU General Public License
+# along with GNU Radio; see the file COPYING.  If not, write to
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
+# 
+
+from gnuradio import gr, gr_unittest
+
+class test_fractional_resampler (gr_unittest.TestCase):
+
+    def setUp(self):
+        self.fg = gr.flow_graph()
+
+    def tearDown(self):
+        self.fg = None
+
+    def test_000_make(self):
+        op = gr.fractional_interpolator_ff(0.0, 1.0)
+        
+if __name__ == '__main__':
+    gr_unittest.main()
+        


Property changes on: 
gnuradio/branches/developers/jcorgan/frac/gnuradio-core/src/python/gnuradio/gr/qa_fractional_interpolator.py
___________________________________________________________________
Name: svn:executable
   + *





reply via email to

[Prev in Thread] Current Thread [Next in Thread]