I need to convert a number into Unsigned Byte Integer, Unsigned Word Integer or Unsigned Long Integer by Case. I implementet it by creating a Case Structure with the cases "UNSIGNED8", "UNSIGNED16" and "UNSIGNED32" with the respective function in it, but the result in any case is the highest implementet function.
E.g.
I want a UNSIGNED8 and use the respective String to control my Case Structure. The result "outside" the Case Structure is an UNSIGNED32, the "highest" function within my Case Structure.
After removing the UNSIGNED32-Function, leaving UNSIGNED8 and UNSIGNED16, the result is UNSIGNED16.
Is this a bug or am i doing something wrong?
Thx in advance for any help 😉