If it is more convenient to enter constants in expressions as hexadecimal or binary you can do so in DAQFactory using the following notation:
For hexadecimal, proceed the number with 0x. For example 0x1f is the same as decimal 31.
For binary, proceed the number with 0b. For example 0b10011 is the same as decimal 19.
Note: The x and b must be in lowercase and preceded by a zero.
Note: Only integer values between 0 and 2^31 (2 to the 31st power) are supported. To do larger values, split your number into words and add them.