From e2216220f85d3e9d93db3946aa0e68e59309d1c2 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Sun, 20 Sep 2009 09:49:10 -0700 Subject: Reorganization of directories Moved apps into own directory Added (empty) python directory --- gr-noaa/apps/Makefile.am | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 gr-noaa/apps/Makefile.am (limited to 'gr-noaa/apps/Makefile.am') diff --git a/gr-noaa/apps/Makefile.am b/gr-noaa/apps/Makefile.am new file mode 100644 index 000000000..23b8240c1 --- /dev/null +++ b/gr-noaa/apps/Makefile.am @@ -0,0 +1,33 @@ +# +# Copyright 2009 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 + +if PYTHON + +dist_bin_SCRIPTS = \ + usrp_rx_hrpt.py \ + usrp_rx_lrit.py + +EXTRA_DIST = \ + usrp_rx_hrpt.grc \ + usrp_rx_lrit.grc +endif -- cgit From 7c4b43a1a4b3ff6c99fe96805f8d4518a22eb0a5 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Wed, 23 Sep 2009 11:40:19 -0700 Subject: Split HRPT script into live receive and post-processing Cleanup debug info Created 'demod_hrpt_file.py' Updated 'usrp_rx_hrpt.py' with GUI, USRP, and config file --- gr-noaa/apps/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gr-noaa/apps/Makefile.am') diff --git a/gr-noaa/apps/Makefile.am b/gr-noaa/apps/Makefile.am index 23b8240c1..906638ff1 100644 --- a/gr-noaa/apps/Makefile.am +++ b/gr-noaa/apps/Makefile.am @@ -24,10 +24,12 @@ include $(top_srcdir)/Makefile.common if PYTHON dist_bin_SCRIPTS = \ + demod_hrpt_file.py \ usrp_rx_hrpt.py \ usrp_rx_lrit.py EXTRA_DIST = \ + demod_hrpt_file.grc \ usrp_rx_hrpt.grc \ usrp_rx_lrit.grc endif -- cgit