diff options
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] |