GM6000 Digital Heater Controller Branch: main
SDX-1330
misc.h
Go to the documentation of this file.
1#ifndef Cpl_Text_misc_h_
2#define Cpl_Text_misc_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file contains a set of miscellaneous low-level text/string functions.
16
17 NOTE: The application should be CAREFUL when using these method in that the
18 provide little/to-none protection against memory errors/over-runs.
19*/
20
21#include <stdint.h>
22#include <stdlib.h>
23
24
25///
26namespace Cpl {
27///
28namespace Text {
29
30
31/** Returns the binary value for the 'ASCII HEX' character 'c'. Returns -1
32 if there is an error (e.g. 'c' is not valid 'hex' character)
33 */
34uint8_t unhexChar( char c );
35
36
37/** This method converts up to 'numCharToScan' characters from the ASCII HEX
38 text string. The converted binary data is stored in 'outData'.
39
40 The application is responsible for ENSURING that the 'outData' is large
41 enough to hold the converted output!
42 */
43bool unhex( const char* inString, size_t numCharToScan, uint8_t* outData );
44
45
46}; // end namespaces
47};
48#endif // end header latch
bool unhex(const char *inString, size_t numCharToScan, uint8_t *outData)
This method converts up to 'numCharToScan' characters from the ASCII HEX text string.
uint8_t unhexChar(char c)
Returns the binary value for the 'ASCII HEX' character 'c'.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20