FreeCalypso > hg > tcs211-l1-reconst
comparison chipsetsw/services/atp/atp_gsm_bt_api_misc.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_bt_api_misc.c | |
4 * | |
5 * This file defines all the dummy functions that may be called by CONDAT | |
6 * | |
7 * | |
8 * Version number : 0.1 Date : 10-Jully-2000 | |
9 * | |
10 * History : 0.1 - Created by E. Baissus | |
11 * | |
12 * Author : Eric Baissus : e-baissus@ti.com | |
13 * | |
14 * (C) Copyright 2000 by Texas Instruments Incorporated | |
15 *****************************************************************************/ | |
16 | |
17 #include "rv/rv_general.h" | |
18 #include "rvf/rvf_api.h" | |
19 #include "atp/atp_api.h" | |
20 #include "atp/atp_config.h" | |
21 #include "atp/atp_messages.h" | |
22 #include "atp/atp_gsm_bt_api.h" | |
23 #include "atp/atp_gsm_gsm_api.h" | |
24 #include "atp/atp_config.h" | |
25 #include "atp/bti.h" | |
26 | |
27 #ifndef _WINDOWS | |
28 #include "config/rv.cfg" | |
29 #endif | |
30 | |
31 #if (_GSM==1) | |
32 | |
33 void bti_init_profile_req ( T_BTI_DEVICE_TYPE device,T_BTI_CONFIG config) | |
34 { | |
35 } | |
36 | |
37 void bti_deinit_profile_req(T_BTI_DEVICE_TYPE device ) | |
38 { | |
39 } | |
40 | |
41 void bti_device_search_req(T_BTI_DEVICE_TYPE device ) | |
42 { | |
43 } | |
44 | |
45 void bti_connect_device_req(T_BTI_DEVICE_TYPE device,T_BTI_BD_ADDR bd_addr[]) | |
46 { | |
47 } | |
48 | |
49 void bti_connect_device_res(T_BTI_DEVICE_TYPE device, T_BTI_BD_ADDR bd_addr[], | |
50 T_BTI_RESULT connect_accepted) | |
51 { | |
52 } | |
53 | |
54 void bti_disconnect_device_req( T_BTI_DEVICE_TYPE device, T_BTI_BD_ADDR bd_addr[]) | |
55 { | |
56 } | |
57 | |
58 void bti_transfer_audio_in_req(T_BTI_DEVICE_TYPE device) | |
59 { | |
60 } | |
61 | |
62 void bti_transfer_audio_out_req(T_BTI_DEVICE_TYPE device, T_BTI_BD_ADDR bd_addr[]) | |
63 { | |
64 } | |
65 | |
66 void bti_pin_res(T_BTI_DEVICE_TYPE device, T_BTI_BD_ADDR bd_addr[], | |
67 T_BTI_PIN pin_code[]) | |
68 { | |
69 } | |
70 | |
71 void bti_reconfig_profile_req( T_BTI_DEVICE_TYPE device, T_BTI_CONFIG config) | |
72 { | |
73 } | |
74 | |
75 void bti_device_control_req(T_BTI_DEVICE_TYPE device, T_BTI_REQ_ID req_id, | |
76 unsigned char *control_data,unsigned short data_length) | |
77 { | |
78 } | |
79 | |
80 void bti_device_control_res(T_BTI_DEVICE_TYPE device, T_BTI_RES_ID res_id, | |
81 unsigned char *control_data,unsigned short data_length) | |
82 { | |
83 } | |
84 | |
85 #endif |