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/__init__.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 gr-digital/python/__init__.py (limited to 'gr-digital/python/__init__.py') diff --git a/gr-digital/python/__init__.py b/gr-digital/python/__init__.py new file mode 100644 index 000000000..c1aed10f9 --- /dev/null +++ b/gr-digital/python/__init__.py @@ -0,0 +1,24 @@ +# +# Copyright 2006 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. +# + +# The presence of this file turns this directory into a Python package + +from digital_swig import * -- 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/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gr-digital/python/__init__.py') diff --git a/gr-digital/python/__init__.py b/gr-digital/python/__init__.py index c1aed10f9..4bbb9850b 100644 --- a/gr-digital/python/__init__.py +++ b/gr-digital/python/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2006 Free Software Foundation, Inc. +# Copyright 2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -22,3 +22,6 @@ # The presence of this file turns this directory into a Python package from digital_swig import * +from dbpsk import * +from dqpsk import * +from d8psk import * -- 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/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gr-digital/python/__init__.py') diff --git a/gr-digital/python/__init__.py b/gr-digital/python/__init__.py index 4bbb9850b..a17128e7d 100644 --- a/gr-digital/python/__init__.py +++ b/gr-digital/python/__init__.py @@ -25,3 +25,5 @@ from digital_swig import * from dbpsk import * from dqpsk import * from d8psk import * +from psk2 import * +from qam import * -- cgit