FreeCalypso > hg > freecalypso-citrine
comparison ccd/bcdodd.c @ 0:75a11d740a02
initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 09 Jun 2016 00:02:41 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:75a11d740a02 |
|---|---|
| 1 /* | |
| 2 +----------------------------------------------------------------------------- | |
| 3 | Project : | |
| 4 | Modul : bcdodd.c | |
| 5 +----------------------------------------------------------------------------- | |
| 6 | Copyright 2002 Texas Instruments Berlin, AG | |
| 7 | All rights reserved. | |
| 8 | | |
| 9 | This file is confidential and a trade secret of Texas | |
| 10 | Instruments Berlin, AG | |
| 11 | The receipt of or possession of this file does not convey | |
| 12 | any rights to reproduce or disclose its contents or to | |
| 13 | manufacture, use, or sell anything it may describe, in | |
| 14 | whole, or in part, without the specific written consent of | |
| 15 | Texas Instruments Berlin, AG. | |
| 16 +----------------------------------------------------------------------------- | |
| 17 | Purpose : Definition of encoding and decoding functions for BCDODD elements | |
| 18 +----------------------------------------------------------------------------- | |
| 19 */ | |
| 20 | |
| 21 | |
| 22 /* | |
| 23 * standard definitions like GLOBAL, UCHAR, ERROR etc. | |
| 24 */ | |
| 25 #include "typedefs.h" | |
| 26 #include "header.h" | |
| 27 | |
| 28 /* | |
| 29 * Prototypes of ccd (USE_DRIVER EQ undef) for prototypes only | |
| 30 * look at ccdapi.h | |
| 31 */ | |
| 32 #undef USE_DRIVER | |
| 33 #include "ccdapi.h" | |
| 34 | |
| 35 /* | |
| 36 * Types and functions for bit access and manipulation | |
| 37 */ | |
| 38 #include "ccd_globs.h" | |
| 39 #include "bitfun.h" | |
| 40 | |
| 41 /* | |
| 42 * Prototypes of ccd internal functions | |
| 43 */ | |
| 44 #include "ccd.h" | |
| 45 | |
| 46 /* | |
| 47 * Declaration of coder/decoder tables | |
| 48 */ | |
| 49 #include "ccdtable.h" | |
| 50 #include "ccddata.h" | |
| 51 | |
| 52 #ifndef RUN_INT_RAM | |
| 53 /* | |
| 54 +--------------------------------------------------------------------+ | |
| 55 | PROJECT : CCD (6144) MODULE : CCD | | |
| 56 | STATE : code ROUTINE : cdc_bcdodd_decode | | |
| 57 +--------------------------------------------------------------------+ | |
| 58 | |
| 59 PURPOSE : | |
| 60 | |
| 61 */ | |
| 62 | |
| 63 SHORT cdc_bcdodd_decode (const ULONG c_ref, const ULONG e_ref, T_CCD_Globs *globs) | |
| 64 { | |
| 65 #ifdef DEBUG_CCD | |
| 66 #ifndef CCD_SYMBOLS | |
| 67 TRACE_CCD (globs, "cdc_bcdodd_decode()"); | |
| 68 #else | |
| 69 TRACE_CCD (globs, "cdc_bcdodd_decode() %s", ccddata_get_alias((USHORT) e_ref, 1)); | |
| 70 #endif | |
| 71 #endif | |
| 72 cdc_BCD_decode (e_ref, 1, globs); | |
| 73 return 1; | |
| 74 } | |
| 75 #endif /* !RUN_INT_RAM */ | |
| 76 | |
| 77 #ifndef RUN_INT_RAM | |
| 78 /* | |
| 79 +--------------------------------------------------------------------+ | |
| 80 | PROJECT : CCD (6144) MODULE : CCD | | |
| 81 | STATE : code ROUTINE : cdc_bcdodd_encode | | |
| 82 +--------------------------------------------------------------------+ | |
| 83 | |
| 84 PURPOSE : encoding a Bytearray, that contain a BCD Number, into | |
| 85 the bitstream. | |
| 86 */ | |
| 87 | |
| 88 | |
| 89 SHORT cdc_bcdodd_encode (const ULONG c_ref, const ULONG e_ref, T_CCD_Globs *globs) | |
| 90 { | |
| 91 #ifdef DEBUG_CCD | |
| 92 #ifndef CCD_SYMBOLS | |
| 93 TRACE_CCD (globs, "cdc_bcdodd_encode()"); | |
| 94 #else | |
| 95 TRACE_CCD (globs, "cdc_bcdodd_encode() %s", ccddata_get_alias((USHORT) e_ref, 1)); | |
| 96 #endif | |
| 97 #endif | |
| 98 cdc_BCD_encode (e_ref, 1, globs); | |
| 99 return 1; | |
| 100 } | |
| 101 #endif /* !RUN_INT_RAM */ |
