plcopen/definitions.py
changeset 1798 7ec48bdc7a57
parent 1782 5b6ad7a7fd9d
child 1802 74a3f4d5f407
equal deleted inserted replaced
1797:40a5fbaf0038 1798:7ec48bdc7a57
   115     ("INT",   (-2**15, 2**15 - 1)),
   115     ("INT",   (-2**15, 2**15 - 1)),
   116     ("DINT",  (-2**31, 2**31 - 1)),
   116     ("DINT",  (-2**31, 2**31 - 1)),
   117     ("LINT",  (-2**31, 2**31 - 1)),
   117     ("LINT",  (-2**31, 2**31 - 1)),
   118     ("USINT", (0,      2**8 - 1)),
   118     ("USINT", (0,      2**8 - 1)),
   119     ("UINT",  (0,      2**16 - 1)),
   119     ("UINT",  (0,      2**16 - 1)),
   120     ("UDINT", (0,      2**31 - 1)),
   120     ("UDINT", (0,      2**32 - 1)),
   121     ("ULINT", (0,      2**31 - 1))
   121     ("ULINT", (0,      2**32 - 1))
   122 ]
   122 ]
   123 
   123 
   124 ANY_TO_ANY_FILTERS = {
   124 ANY_TO_ANY_FILTERS = {
   125     "ANY_TO_ANY": [
   125     "ANY_TO_ANY": [
   126         # simple type conv are let as C cast
   126         # simple type conv are let as C cast