diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-07-12 10:27:09 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-07-12 10:27:09 +0200 |
commit | 10fe7154f5e09cd42f718c327814921f0539d8a0 (patch) | |
tree | 9572bcb594b4a293b3114ba6f2cdf300e4839d76 /tango | |
parent | e29ac7a7bcdeb14fffdebf8778ffcb1c3f06078c (diff) | |
download | uca-10fe7154f5e09cd42f718c327814921f0539d8a0.tar.gz uca-10fe7154f5e09cd42f718c327814921f0539d8a0.tar.bz2 uca-10fe7154f5e09cd42f718c327814921f0539d8a0.tar.xz uca-10fe7154f5e09cd42f718c327814921f0539d8a0.zip |
TANGO: cover uint64 types
Diffstat (limited to 'tango')
-rwxr-xr-x | tango/Uca | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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, |