|
From: Anders J. <and...@us...> - 2001-07-30 15:44:04
|
The following file was modified in apps/bluetooth/btd:
Name Old version New version Comment
---- ----------- ----------- -------
btd.c 1.100 1.101=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
The t command isn't available if we are not building with unplug test code
The diff of the modified file(s):
--- btd.c 2001/07/30 12:54:27 1.100
+++ btd.c 2001/07/30 15:44:01 1.101
@@ -581,7 +581,9 @@
" bb_conn <xx:xx:xx:xx:xx:xx>", /* connect only baseband */
" bb_disc <hci handle>", /* disconnect baseband */
" ",
+#ifdef INCLUDE_UNPLUG_TEST
" t <testcase>", /* e.g testcase 4.3 't 43' */
+#endif
"",
#endif
NULL
@@ -1504,11 +1506,13 @@
tmp_bd[3], tmp_bd[4], tmp_bd[5], tmp[0]);
l2ca_getinfo(tmp_bd, tmp[0]);
}
+#ifdef INCLUDE_UNPLUG_TEST
else if (sscanf(buf, "t %d", &i) =3D=3D 1)
{
/* unplug test cases, if you don't know what it is, don't use it !!! :=
) */
process_test_cmd(i);
}
+#endif
else if(sscanf(buf, "tcs_conn %x:%x:%x:%x:%x:%x",
&bd[0], &bd[1], &bd[2], &bd[3], &bd[4], &bd[5]) =3D=3D 6)
{=20=20=20=20
|