summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-07-12 10:27:09 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-07-12 10:27:09 +0200
commit10fe7154f5e09cd42f718c327814921f0539d8a0 (patch)
tree9572bcb594b4a293b3114ba6f2cdf300e4839d76
parente29ac7a7bcdeb14fffdebf8778ffcb1c3f06078c (diff)
downloadlibuca-10fe7154f5e09cd42f718c327814921f0539d8a0.tar.gz
libuca-10fe7154f5e09cd42f718c327814921f0539d8a0.tar.bz2
libuca-10fe7154f5e09cd42f718c327814921f0539d8a0.tar.xz
libuca-10fe7154f5e09cd42f718c327814921f0539d8a0.zip
TANGO: cover uint64 types
-rwxr-xr-xtango/Uca1
1 files changed, 1 insertions, 0 deletions
diff --git a/tango/Uca b/tango/Uca
index 0438f70..7753afd 100755
--- a/tango/Uca
+++ b/tango/Uca
@@ -25,6 +25,7 @@ def get_tango_type(obj_type):
GObject.TYPE_FLOAT: PyTango.CmdArgType.DevFloat,
GObject.TYPE_INT: PyTango.CmdArgType.DevShort, # DevInt is invalid?
GObject.TYPE_UINT: PyTango.CmdArgType.DevUShort, # check
+ GObject.TYPE_UINT64: PyTango.CmdArgType.DevULong,
GObject.TYPE_LONG: PyTango.CmdArgType.DevLong,
GObject.TYPE_DOUBLE: PyTango.CmdArgType.DevDouble,
GObject.TYPE_STRING: PyTango.CmdArgType.DevString,