diff options
author | Bogdan Radulescu <bogdan@nimblex.net> | 2018-02-03 13:30:58 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-02-03 13:30:58 +0100 |
commit | 3c177dbe3b93dc9a5db27f9b53417a28a1ead6ad (patch) | |
tree | f25c24b0d2127d0dc750e53e669e4d5c2e071116 /gr-analog/docs | |
parent | a0adcd3347c7ffd6ef3c42ce7705a23978774d3b (diff) |
Rename subdir doc to docs where appropriate
This makes the subdir naming consistent across modules.
Diffstat (limited to 'gr-analog/docs')
-rw-r--r-- | gr-analog/docs/CMakeLists.txt | 23 | ||||
-rw-r--r-- | gr-analog/docs/README.analog | 13 | ||||
-rw-r--r-- | gr-analog/docs/analog.dox | 23 |
3 files changed, 59 insertions, 0 deletions
diff --git a/gr-analog/docs/CMakeLists.txt b/gr-analog/docs/CMakeLists.txt new file mode 100644 index 0000000000..009c2d3dca --- /dev/null +++ b/gr-analog/docs/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/docs/README.analog b/gr-analog/docs/README.analog new file mode 100644 index 0000000000..9e242878bb --- /dev/null +++ b/gr-analog/docs/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/docs/analog.dox b/gr-analog/docs/analog.dox new file mode 100644 index 0000000000..b6ce1c2478 --- /dev/null +++ b/gr-analog/docs/analog.dox @@ -0,0 +1,23 @@ +/*! \page page_analog Analog Modulation + +\section analog_introduction 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. + +A quick listing of the details can be found in Python after importing +by using: + +\code + help(analog) +\endcode + +*/ |