Kinetis Bootloader Host  2.0.0
Host Tools for Kinetis devices
src/blfwk/HexValues.h
1 /*
2  * File: HexValues.h
3  *
4  * Copyright (c) Freescale Semiconductor, Inc. All rights reserved.
5  * See included license file for license details.
6  */
7 #if !defined(_HexValues_h_)
8 #define _HexValues_h_
9 
10 #include <stdint.h>
11 
13 bool isHexDigit(char c);
14 
16 uint8_t hexCharToInt(char c);
17 
19 uint8_t hexByteToInt(const char *encodedByte);
20 
21 #endif // _HexValues_h_