aboutsummaryrefslogtreecommitdiffstats
path: root/host/docs/coding.rst
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-03-23 15:11:26 +0100
committerMartin Braun <martin.braun@ettus.com>2014-04-09 17:25:09 +0200
commita74919c2a89a6b1ae40b526c4ceadf1108bfd186 (patch)
tree79cb43c5d7ed3caa1fe8b695001267f0cc8286bf /host/docs/coding.rst
parent47bf17b50a305228cfd07ff6fbaff3ac4a30e811 (diff)
downloaduhd-a74919c2a89a6b1ae40b526c4ceadf1108bfd186.tar.gz
uhd-a74919c2a89a6b1ae40b526c4ceadf1108bfd186.tar.bz2
uhd-a74919c2a89a6b1ae40b526c4ceadf1108bfd186.zip
docs: Moved manual to Doxygen
Diffstat (limited to 'host/docs/coding.rst')
-rw-r--r--host/docs/coding.rst30
1 files changed, 0 insertions, 30 deletions
diff --git a/host/docs/coding.rst b/host/docs/coding.rst
deleted file mode 100644
index 432307cca..000000000
--- a/host/docs/coding.rst
+++ /dev/null
@@ -1,30 +0,0 @@
-========================================================================
-UHD - Coding to the API
-========================================================================
-
-.. contents:: Table of Contents
-
-------------------------------------------------------------------------
-Various API interfaces
-------------------------------------------------------------------------
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-Low-Level: The device API
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-A device is an abstraction for hardware that is connected to the host system.
-For a USRP device, this means that the motherboard and everything on it would be
-considered to be a "device". The device API provides ways to:
-
-* Discover devices that are physically connected to the host system.
-* Create a device object for a particular device identified by address.
-* Register a device driver into the discovery and factory sub-system.
-* Streaming samples with metadata into and out of the device.
-* Set and get properties on the device object.
-
-See the documentation in *device.hpp* for reference.
-
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-High-Level: The Multi-USRP
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-The Multi-USRP class provides a fat interface to a single USRP device with
-one or more channels, or multiple USRP devicess in a homogeneous setup.
-See the documentation in *usrp/multi_usrp.hpp* for reference.