|
From: Peter K. <pk...@us...> - 2001-10-21 10:33:11
|
The following file was modified in apps/bluetooth/btd:
Name Old version New version Comment
---- ----------- ----------- -------
btd.c 1.104 1.105=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Added dummy versions of bt_use_bcsp() and bt_dfu_mode() for
user mode stack.
The diff of the modified file(s):
--- btd.c 2001/10/10 14:53:01 1.104
+++ btd.c 2001/10/21 10:33:10 1.105
@@ -205,6 +205,8 @@
void bt_rfcomm_connection_ready(int status);
void bt_sdp_connection_ready(int status);
int bt_initiated(void);
+int bt_use_bcsp(int new_use_bcsp);
+int bt_dfu_mode(int new_dfu_mode);
extern int bt_read_proc(char *buf, int len);
bt_stat_struct bt_stat;
static int bt_initdone =3D 0;
@@ -2469,6 +2471,16 @@
int bt_initiated(void)
{
return bt_initdone;
+}
+
+int bt_use_bcsp(int new_use_bcsp)
+{
+ return 0;
+}
+
+int bt_dfu_mode(int new_dfu_mode)
+{
+ return 0;
}
=20
/* TCP socket */
|