FreeCalypso > hg > tcs211-c139
comparison chipsetsw/system/bootloader/inc/convert.h @ 0:509db1a7b7b8
initial import: leo2moko-r1
| author | Space Falcon <falcon@ivan.Harhan.ORG> |
|---|---|
| date | Mon, 01 Jun 2015 03:24:05 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:509db1a7b7b8 |
|---|---|
| 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__ */ |
