en:software:qview:qview_6:qcl_library:vr10sbytoasc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
en:software:qview:qview_6:qcl_library:vr10sbytoasc [2017/02/06 17:11] – [Esempio] qem103en:software:qview:qview_6:qcl_library:vr10sbytoasc [2019/08/29 17:01] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== VR10SByToAsc ======
 +
 +**V = **//Variables//
 +
 +**R = **//Reading functions//
 +
 +SIGNED BYTE  ---->  ASCII
 +
 +The VR10SByToAsc function __converts a Signed Bytes variable type (byte with sign) in an Ascii variable type__.
 +
 +===== IMPLEMENTATION =====
 +
 +**VR10SByToAsc (value, index, array, errcode)**
 +
 +Parameters:
 +
 +^IN/OUT^VARIABLE TYPE^EXAMPLE NAME^DIM^^
 +|  IN  |  GLOBAL  |  value  |  B  |Data value to convert|
 +|  IN  |  GLOBAL  |  index  |  L  |Index of the array element to start the "deposit" of the converted data|
 +|  OUT  |  ARRGBL  |  array  |  B  |Array containing the converted data (must be declared at least "index" elements)|
 +|  OUT  |  GLOBAL  |  errcode  |  F  |Variable that indicates a possible error on the function|
 +
 +==== Errcode ====
 +
 +After calling the function, 'errcode' can take certain values, the meaning of these values is summarized below:\\
 +0: No error
 +
 +=== Example ===
 +
 +Transforms the value 12 (signed byte) in a ASCII value
 +
 +<code QCL>
 +value = -12
 +index = 1
 +
 +VR10SByToAsc (value, index, array, errcode)
 +
 +;On the array will be :
 +; array[1] = 48
 +; array[2] = 67
 +</code>
 +
 +=== Note ===