diff options
Diffstat (limited to 'gr-digital/doc')
-rw-r--r-- | gr-digital/doc/.gitignore | 2 | ||||
-rw-r--r-- | gr-digital/doc/Makefile.am | 27 | ||||
-rw-r--r-- | gr-digital/doc/README.digital | 13 | ||||
-rw-r--r-- | gr-digital/doc/digital.dox | 23 |
4 files changed, 65 insertions, 0 deletions
diff --git a/gr-digital/doc/.gitignore b/gr-digital/doc/.gitignore new file mode 100644 index 000000000..b336cc7ce --- /dev/null +++ b/gr-digital/doc/.gitignore @@ -0,0 +1,2 @@ +/Makefile +/Makefile.in diff --git a/gr-digital/doc/Makefile.am b/gr-digital/doc/Makefile.am new file mode 100644 index 000000000..dbfe1d5a2 --- /dev/null +++ b/gr-digital/doc/Makefile.am @@ -0,0 +1,27 @@ +# +# 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 + +SUBDIRS = + +dist_gr_doc_DATA = \ + README.digital diff --git a/gr-digital/doc/README.digital b/gr-digital/doc/README.digital new file mode 100644 index 000000000..f4d40f3a0 --- /dev/null +++ b/gr-digital/doc/README.digital @@ -0,0 +1,13 @@ +This is the gr-digital package. It contains all of the digital +modulation blocks, utilities, and examples. To use the digital blocks, +the Python namespaces is in gnuradio.digital, which would be normally +imported as: + + from gnuradio import digital + +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(digital) + diff --git a/gr-digital/doc/digital.dox b/gr-digital/doc/digital.dox new file mode 100644 index 000000000..110dcb677 --- /dev/null +++ b/gr-digital/doc/digital.dox @@ -0,0 +1,23 @@ +/*! \page page_digital Digital Modulation + +\section Introduction +This is the gr-digital package. It contains all of the digital +modulation blocks, utilities, and examples. To use the digital blocks, +the Python namespaces is in gnuradio.digital, which would be normally +imported as: + +\code + from gnuradio import digital +\endcode + +See the Doxygen documentation for details about the blocks available +in this package. The relevant blocks are listed in the \ref digital group. + +A quick listing of the details can be found in Python after importing +by using: + +\code + help(digital) +\endcode + +*/ |