summaryrefslogtreecommitdiff
path: root/gr-analog/doc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-analog/doc')
-rw-r--r--gr-analog/doc/CMakeLists.txt23
-rw-r--r--gr-analog/doc/README.analog13
-rw-r--r--gr-analog/doc/analog.dox23
3 files changed, 59 insertions, 0 deletions
diff --git a/gr-analog/doc/CMakeLists.txt b/gr-analog/doc/CMakeLists.txt
new file mode 100644
index 000000000..5a02547db
--- /dev/null
+++ b/gr-analog/doc/CMakeLists.txt
@@ -0,0 +1,23 @@
+# Copyright 2012 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.
+
+install(
+ FILES README.analog
+ DESTINATION ${GR_PKG_DOC_DIR}
+)
diff --git a/gr-analog/doc/README.analog b/gr-analog/doc/README.analog
new file mode 100644
index 000000000..b2b763cc3
--- /dev/null
+++ b/gr-analog/doc/README.analog
@@ -0,0 +1,13 @@
+This is the gr-analog package. It contains all of the analog
+modulation blocks, utilities, and examples. To use the analog blocks,
+the Python namespaces is in gnuradio.analog, which would be normally
+imported as:
+
+ from gnuradio import analog
+
+See the Doxygen documentation for details about the blocks available
+in this package. A quick listing of the details can be found in Python
+after importing by using:
+
+ help(analog)
+
diff --git a/gr-analog/doc/analog.dox b/gr-analog/doc/analog.dox
new file mode 100644
index 000000000..d3af364f7
--- /dev/null
+++ b/gr-analog/doc/analog.dox
@@ -0,0 +1,23 @@
+/*! \page page_analog Analog Modulation
+
+\section Introduction
+This is the gr-analog package. It contains all of the analog
+modulation blocks, utilities, and examples. To use the analog blocks,
+the Python namespaces is in gnuradio.analog, which would be normally
+imported as:
+
+\code
+ from gnuradio import analog
+\endcode
+
+See the Doxygen documentation for details about the blocks available
+in this package. The relevant blocks are listed in the \ref analog group.
+
+A quick listing of the details can be found in Python after importing
+by using:
+
+\code
+ help(analog)
+\endcode
+
+*/