FreeCalypso > hg > freecalypso-citrine
comparison L1/cfile/dummy_tch_data.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 * [rt]x_tch_data() calls appear to be some old API for passing CSD payloads | |
3 * between L1 and the higher layers. If this API was ever used at all, | |
4 * it is so old that even the TSM30 code does not use it; the new API that | |
5 * took its place is dll_data_[du]l(). However, the code in l1_cmplx.c | |
6 * still calls the old API, thus stub functions are needed. TSM30 and | |
7 * Leonardo versions have these stubs in the dl1_com module, but that | |
8 * module no longer exists in our version - see l1_isr_glue.c for the | |
9 * explanation. The LoCosto version has a stub (in sys_dummy.c) only | |
10 * for tx_tch_data() - the other function gets called only when IDS | |
11 * is not enabled. | |
12 * | |
13 * This module provides the necessary stubs for our version. | |
14 */ | |
15 | |
16 void rx_tch_data() | |
17 { | |
18 return; | |
19 } | |
20 | |
21 char *tx_tch_data() | |
22 { | |
23 return(0); | |
24 } |