FreeCalypso > hg > freecalypso-reveng
comparison frbl/reconst/inc/convert.h @ 312:6cba849e3332
frbl/reconst/inc: import from TCS211 surviving source
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 04 Mar 2020 23:06:07 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
311:9cecc930d78f | 312:6cba849e3332 |
---|---|
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__ */ |