aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/convert/gen_convert_general.py
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-02-03 16:45:34 -0800
committerJosh Blum <josh@joshknows.com>2011-02-03 16:45:34 -0800
commit43b19815fec253dc7e5538329f9fe1363f007b8a (patch)
tree152724e647f8986868ef521154720ec9a5b8544d /host/lib/convert/gen_convert_general.py
parent1c8626e40cc9e5243cea0956c6d35d9d96c08d38 (diff)
downloaduhd-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/lib/convert/gen_convert_general.py')
-rw-r--r--host/lib/convert/gen_convert_general.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/convert/gen_convert_general.py b/host/lib/convert/gen_convert_general.py
index 47c4cd7d0..f03448047 100644
--- a/host/lib/convert/gen_convert_general.py
+++ b/host/lib/convert/gen_convert_general.py
@@ -85,7 +85,7 @@ if __name__ == '__main__':
output = parse_tmpl(TMPL_HEADER, file=file)
for width in 1, 2, 3, 4:
for swap, swap_fcn in (('nswap', ''), ('bswap', 'uhd::byteswap')):
- for cpu_type in 'fc32', 'sc16':
+ for cpu_type in 'fc64', 'fc32', 'sc16':
output += parse_tmpl(
TMPL_CONV_TO_FROM_ITEM32_1 if width == 1 else TMPL_CONV_TO_FROM_ITEM32_X,
width=width, swap=swap, swap_fcn=swap_fcn, cpu_type=cpu_type