FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/L1/cfile/dummy_tch_data.c @ 602:5f93a9a8f9a0
L1: [rt]x_tch_data() stubs implemented
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 17 Aug 2014 21:35:23 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
601:05bcd5618c9a | 602:5f93a9a8f9a0 |
---|---|
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 } |