FreeCalypso > hg > tcs211-l1-reconst
comparison chipsetsw/services/atp/atp_gsm_gsm_api_dummy.c @ 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 * File Name : atp_gsm_gsm_api.c | |
4 * | |
5 * This file contains dummy definition of all functions called by the ATP-GSM plug-in. | |
6 * These functions must be provided by CONDAT with their PS | |
7 * | |
8 * | |
9 * Version number : 0.1 Date : 19-Dec-2001 | |
10 * | |
11 * History : 0.1 - Created | |
12 * | |
13 * Author : | |
14 * | |
15 * (C) Copyright 2001 by Texas Instruments Incorporated | |
16 *****************************************************************************/ | |
17 | |
18 #ifdef _WINDOWS | |
19 // In this case, no GSM PS | |
20 // So need to define these dummy functions | |
21 | |
22 #include "rv/rv_general.h" | |
23 #include "atp/atp_gsm_bt_api.h" | |
24 #include "atp/bti_at.h" | |
25 | |
26 #if ( ((ATP_REGR != SW_COMPILED) && (ATP_MISC != SW_COMPILED)) ) | |
27 | |
28 /* functions define in GSM side and called by BT side */ | |
29 void bti_at_init_cnf(T_BTI_ACK ack) | |
30 { | |
31 | |
32 } | |
33 | |
34 void bti_at_deinit_ind(void) | |
35 { | |
36 } | |
37 | |
38 void bti_at_open_port_ind(T_BTI_PORT_NB gsm_port_nb,T_BTI_BT_PORT_INFO bt_custom_info) | |
39 { | |
40 | |
41 } | |
42 | |
43 void bti_at_close_port_ind(T_BTI_PORT_NB gsm_port_nb) | |
44 { | |
45 } | |
46 void bti_at_cmd_ind(T_BTI_PORT_NB gsm_port_nb,char * cmd) | |
47 { | |
48 } | |
49 void bti_at_cmd_cnf(T_BTI_PORT_NB gsm_port_nb) | |
50 { | |
51 } | |
52 void bti_at_abort_ind(T_BTI_PORT_NB gsm_port_nb) | |
53 { | |
54 } | |
55 void bti_data_ready_ind(T_BTI_PORT_NB port_nb,unsigned long nb_of_data) | |
56 { | |
57 } | |
58 void bti_get_gsm_data(T_BTI_PORT_NB port_nb,char * buffer, unsigned long nb_of_data) | |
59 { | |
60 } | |
61 void bti_data_ready_cnf(T_BTI_PORT_NB port_nb) | |
62 { | |
63 } | |
64 | |
65 #endif | |
66 | |
67 #endif |