#7 Find or create a Codesys solution for: WORD_TO_HEXSTR

v1.0
closed
nobody
None
2020-05-01
2019-05-04
aliazzz
No

This function converts a decimal number into a hexadecimal string (base 16).
FUNCTION WORD_TO_HEXSTR: T_MaxString
VAR_INPUT

VAR_INPUT
    in         : WORD;
    iPrecision : INT;
    bLoCase    : BOOL := FALSE;
END_VAR

in: The decimal number requiring conversion.

iPrecision: Minimum number of displayed digits (digits). If the actual number of significant digits is less than the iPrecision parameter, the resulting string is filled with zeros from the left. If the number of significant digits is greater than the iPrecision parameter, the resulting string is not cut off! If the iPrecision parameter and the in parameter are zero, the resulting string is empty.

bLoCase: This parameter determines whether lower or upper case letters are used in the conversion. FALSE => "ABCDEF", TRUE => "abcdef".

Discussion

  • aliazzz

    aliazzz - 2019-05-05

    Ticket moved from /prj/tcunit4codesys/tickets/10/

     
  • aliazzz

    aliazzz - 2019-05-05

    Ticket moved from /prj/csunit/tickets/7/

     
  • zer0g - 2019-05-07

    See comment from BYTE_TO_HEXSTR.

     
  • aliazzz

    aliazzz - 2019-05-08
    • status: open --> closed
     

Log in to post a comment.