diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-31 18:01:27 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-01-31 18:01:27 -0800 |
commit | 67bba008255f98367cf19dba518dceb40f763c25 (patch) | |
tree | ffa2ed472cc04d2083eaad110da9806b69bdd099 /host/include | |
parent | 625d5605dd157f9cf6f1d96e60a4d8d051817aef (diff) | |
download | uhd-67bba008255f98367cf19dba518dceb40f763c25.tar.gz uhd-67bba008255f98367cf19dba518dceb40f763c25.tar.bz2 uhd-67bba008255f98367cf19dba518dceb40f763c25.zip |
uhd: replaced sdev and single usrp in examples with usrp and multi usrp
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/io_type.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/host/include/uhd/types/io_type.hpp b/host/include/uhd/types/io_type.hpp index 5176374d6..ec1b9c056 100644 --- a/host/include/uhd/types/io_type.hpp +++ b/host/include/uhd/types/io_type.hpp @@ -1,5 +1,5 @@ // -// Copyright 2010 Ettus Research LLC +// Copyright 2010-2011 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -33,9 +33,13 @@ namespace uhd{ * Built in IO types known to the system. */ enum tid_t{ + //! Custom type (technically unsupported by implementation) CUSTOM_TYPE = '?', + //! Complex floating point (32-bit floats) range [-1.0, +1.0] COMPLEX_FLOAT32 = 'f', + //! Complex signed integer (16-bit integers) range [-32768, +32767] COMPLEX_INT16 = 's', + //! Complex signed integer (8-bit integers) range [-128, 127] COMPLEX_INT8 = 'b' }; |