From 485be49c4f81db57a78e333e9bd99cd2c77b1e7a Mon Sep 17 00:00:00 2001 From: Tom Rondeau Date: Mon, 28 Mar 2011 17:36:51 -0400 Subject: gr-digital: adding a new top-level block for digital comms work. --- gr-digital/python/Makefile.am | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 gr-digital/python/Makefile.am (limited to 'gr-digital/python/Makefile.am') diff --git a/gr-digital/python/Makefile.am b/gr-digital/python/Makefile.am new file mode 100644 index 000000000..5805d7933 --- /dev/null +++ b/gr-digital/python/Makefile.am @@ -0,0 +1,38 @@ +# +# Copyright 2011 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 3, 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. +# + +include $(top_srcdir)/Makefile.common + +TESTS = +EXTRA_DIST += run_tests.in + +if PYTHON +TESTS += run_tests + +digitaldir = $(grpythondir)/digital + +noinst_PYTHON = \ + qa_digital.py + +digital_PYTHON = \ + __init__.py + +endif -- cgit From a6c20fcd651e111dbb835b7d2becc822cd8ec552 Mon Sep 17 00:00:00 2001 From: Tom Rondeau Date: Mon, 28 Mar 2011 22:21:49 -0400 Subject: gr-digital: adding QA code for Costas loop block. --- gr-digital/python/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gr-digital/python/Makefile.am') diff --git a/gr-digital/python/Makefile.am b/gr-digital/python/Makefile.am index 5805d7933..9db82b608 100644 --- a/gr-digital/python/Makefile.am +++ b/gr-digital/python/Makefile.am @@ -30,7 +30,8 @@ TESTS += run_tests digitaldir = $(grpythondir)/digital noinst_PYTHON = \ - qa_digital.py + qa_digital.py \ + qa_costas_loop_cc.py digital_PYTHON = \ __init__.py -- cgit From cd73f4af9ed50369c47655f9ebb29a4a1ad56f1d Mon Sep 17 00:00:00 2001 From: Tom Rondeau Date: Sat, 9 Apr 2011 16:24:16 -0400 Subject: gr-digital: moved dbpsk, dqpsk, d8psk into the gr-digital space. Mods tested and working in GRC. --- gr-digital/python/Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gr-digital/python/Makefile.am') diff --git a/gr-digital/python/Makefile.am b/gr-digital/python/Makefile.am index 9db82b608..13a3d1157 100644 --- a/gr-digital/python/Makefile.am +++ b/gr-digital/python/Makefile.am @@ -34,6 +34,9 @@ noinst_PYTHON = \ qa_costas_loop_cc.py digital_PYTHON = \ - __init__.py - + __init__.py \ + psk.py \ + dbpsk.py \ + dqpsk.py \ + d8psk.py endif -- cgit From 0b3658687ac902763ffa4d1c0f574e470b3c28db Mon Sep 17 00:00:00 2001 From: Ben Reynwar Date: Wed, 11 May 2011 00:17:09 -0700 Subject: Moved generic psk and qam modulation into gr-digital. --- gr-digital/python/Makefile.am | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'gr-digital/python/Makefile.am') diff --git a/gr-digital/python/Makefile.am b/gr-digital/python/Makefile.am index 13a3d1157..b1d0d11d8 100644 --- a/gr-digital/python/Makefile.am +++ b/gr-digital/python/Makefile.am @@ -38,5 +38,10 @@ digital_PYTHON = \ psk.py \ dbpsk.py \ dqpsk.py \ - d8psk.py + d8psk.py \ + psk2.py \ + generic_mod_demod.py \ + qam.py \ + bpsk.py \ + qpsk.py endif -- cgit From f232855f93d4bccf08b9836943b55c25c2ef0055 Mon Sep 17 00:00:00 2001 From: Tom Rondeau Date: Sun, 10 Jul 2011 20:29:27 -0400 Subject: digital: moving more constellation blocks into gr-digital. Builds, make check needs work. --- gr-digital/python/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'gr-digital/python/Makefile.am') diff --git a/gr-digital/python/Makefile.am b/gr-digital/python/Makefile.am index b1d0d11d8..f4f72f8d8 100644 --- a/gr-digital/python/Makefile.am +++ b/gr-digital/python/Makefile.am @@ -25,6 +25,7 @@ TESTS = EXTRA_DIST += run_tests.in if PYTHON +SUBDIRS = utils TESTS += run_tests digitaldir = $(grpythondir)/digital -- cgit From 0b3d5b1a3238d9f72bcdef6aa3131776fb572175 Mon Sep 17 00:00:00 2001 From: Tom Rondeau Date: Tue, 12 Jul 2011 23:02:47 -0400 Subject: fixing build for constellation code. Had to make some changes to the qa code to import the right stuff after being changed from sitting in gnuradio-core. --- gr-digital/python/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gr-digital/python/Makefile.am') diff --git a/gr-digital/python/Makefile.am b/gr-digital/python/Makefile.am index f4f72f8d8..f0bfbc28f 100644 --- a/gr-digital/python/Makefile.am +++ b/gr-digital/python/Makefile.am @@ -31,7 +31,9 @@ TESTS += run_tests digitaldir = $(grpythondir)/digital noinst_PYTHON = \ - qa_digital.py \ + qa_digital.py \ + qa_constellation.py \ + qa_constellation_receiver.py \ qa_costas_loop_cc.py digital_PYTHON = \ -- cgit