Hex string API
This API provides convertion tools to switch between:
- le_hex_StringToBinary Hex-String to binary
- le_hex_BinaryToString Binary to Hex-String
Conversion
Code sample:
char HexString[] = "136ABC";uint8_t binString[] = {0x13,0x6A,0xBC};
So le_hex_StringToBinary will convert HexString to binString.
and le_hex_BinaryToString will convert binString to HexString.
Copyright (C) Sierra Wireless Inc. Use of this work is subject to license.