Functions | |
| BYTE * | utoa (auto WORD Value, auto BYTE *pBuffer) |
| Transfer a unsigned 16 bit value into corresponding string without trailing zeros. | |
| BYTE * | ubtoa (auto BYTE Value, auto BYTE *pBuffer) |
| Convert the given value into a ASCII expression without trailing zeros. | |
| BYTE | Htoc_low (auto BYTE Value) |
| Convert the low nibble of a given character to its ASCII hexadecimal representation. | |
| BYTE | Htoc_high (auto BYTE Value) |
| Convert the high nibble of a given character to its ASCII hexadecimal representation. | |
| BYTE | htoc_high (auto BYTE Value) |
| Convert the high nibble of a given character to its ASCII hexadecimal representation. | |
| BYTE | htoc_low (auto BYTE Value) |
| Convert the low nibble of a given character to its ASCII hexadecimal representation. | |
| BYTE * | htoa (auto WORD Value, auto BYTE *pBuffer) |
| Convert the given 16 bit value into a hexadecimal ASCII expression without trailing zeros. | |
| BYTE* htoa | ( | auto WORD | Value, | |
| auto BYTE * | pBuffer | |||
| ) |
Convert the given 16 bit value into a hexadecimal ASCII expression without trailing zeros.
| Value | The value to convert. | |
| pBuffer | Buffer space for conversion (must be at least 5 bytes). |
| BYTE htoc_high | ( | auto BYTE | Value | ) |
Convert the high nibble of a given character to its ASCII hexadecimal representation.
| Value | The value to convert. |
| BYTE Htoc_high | ( | auto BYTE | Value | ) |
Convert the high nibble of a given character to its ASCII hexadecimal representation.
| Value | The value to convert. |
| BYTE htoc_low | ( | auto BYTE | Value | ) |
Convert the low nibble of a given character to its ASCII hexadecimal representation.
| Value | The value to convert. |
| BYTE Htoc_low | ( | auto BYTE | Value | ) |
Convert the low nibble of a given character to its ASCII hexadecimal representation.
| Value | The value to convert. |
| BYTE* ubtoa | ( | auto BYTE | Value, | |
| auto BYTE * | pBuffer | |||
| ) |
Convert the given value into a ASCII expression without trailing zeros.
| Value | The value to convert. | |
| pBuffer | A buffer to copy the converted values. The buffer must be big enough (3 characters + null termination). |
| BYTE* utoa | ( | auto WORD | Value, | |
| auto BYTE * | pBuffer | |||
| ) |
Transfer a unsigned 16 bit value into corresponding string without trailing zeros.
| Value | Value to convert. | |
| pBuffer | Buffer space for conversion (must be at least 6 bytes). |
1.5.5