diff options
author | Josh Blum <josh@joshknows.com> | 2011-02-03 16:45:34 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-02-03 16:45:34 -0800 |
commit | 43b19815fec253dc7e5538329f9fe1363f007b8a (patch) | |
tree | 152724e647f8986868ef521154720ec9a5b8544d /host/include | |
parent | 1c8626e40cc9e5243cea0956c6d35d9d96c08d38 (diff) | |
download | uhd-43b19815fec253dc7e5538329f9fe1363f007b8a.tar.gz uhd-43b19815fec253dc7e5538329f9fe1363f007b8a.tar.bz2 uhd-43b19815fec253dc7e5538329f9fe1363f007b8a.zip |
uhd: added io type and conversion for complex64 (its not really useful)
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/io_type.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/include/uhd/types/io_type.hpp b/host/include/uhd/types/io_type.hpp index ec1b9c056..990d701f9 100644 --- a/host/include/uhd/types/io_type.hpp +++ b/host/include/uhd/types/io_type.hpp @@ -35,6 +35,8 @@ namespace uhd{ enum tid_t{ //! Custom type (technically unsupported by implementation) CUSTOM_TYPE = '?', + //! Complex floating point (64-bit floats) range [-1.0, +1.0] + COMPLEX_FLOAT64 = 'd', //! Complex floating point (32-bit floats) range [-1.0, +1.0] COMPLEX_FLOAT32 = 'f', //! Complex signed integer (16-bit integers) range [-32768, +32767] |