]> rtime.felk.cvut.cz Git - tiny-bt.git/blob - src2/testapp.c
new version
[tiny-bt.git] / src2 / testapp.c
1 /*
2 *  C Implementation: testapp
3 *
4 * Description: 
5 *
6 *
7 * Author: root <root@ubuntu>, (C) 2008
8 *
9 * Copyright: See COPYING file that comes with this distribution
10 *
11 */
12 bt_address rem_bd_addr_array[HCI_MAX_DEV];
13
14
15 int callback_app_read_bd_addr(bt_address *p_address){
16
17
18 }
19
20 int callback_app_read_local_name(char *p_name){
21
22
23 }
24
25 int callback_app_inquiry_RSSI(bt_address *p_address){
26
27
28 }
29
30 int callback_app_connection_complete(__u16 *p_handle, bt_address *p_address){
31
32
33 }
34
35
36 int main(void){
37         bt_device device,*p_device=&device;
38         memset(p_device,0,sizeof(bt_device))
39         p_device->type=LINUX;
40         tiny_bt_init(p_device);
41
42
43         
44
45
46
47
48         return 0;
49 }