comparison src/cs/system/bootloader/inc/convert.h @ 0:945cf7f506b2

src/cs: chipsetsw import from tcs211-fcmodem binary blobs and LCD demo files have been excluded, all line endings are LF only
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 25 Sep 2016 22:50:11 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:945cf7f506b2
1 /*******************************************************************************
2 *
3 * CONVERT.H
4 *
5 * This module contains functions to convert a command into a string to send on
6 * the serial link and to get a command from a string received on the serial
7 * link.
8 *
9 * (C) Texas Instruments 1998
10 *
11 ******************************************************************************/
12
13 #ifndef __CONVERT_H__
14 #define __CONVERT_H__
15
16 #include "main/sys_types.h"
17
18 extern long con_get_command_from_string (SYS_UWORD8 byte_to_analyze, SYS_UWORD8 *command);
19
20 extern void con_build_string_from_command (SYS_UWORD8 *command,
21 SYS_UWORD8 *string,
22 SYS_UWORD16 *string_length);
23
24 extern void con_initialize_conversion (void);
25
26 #endif /* __CONVERT_H__ */