|
From: Peter K. <pk...@us...> - 2001-10-16 14:43:19
|
The following file was modified in apps/bluetooth/experimental:
Name Old version New version Comment
---- ----------- ----------- -------
bt_misc.c 1.21 1.22=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Added #ifdefs around speeds above 115200 in translate_speed().
The diff of the modified file(s):
--- bt_misc.c 2001/10/10 16:20:40 1.21
+++ bt_misc.c 2001/10/16 10:25:36 1.22
@@ -337,15 +337,21 @@
case 115200:
speed_c =3D B115200;
break;
+#ifdef B230400
case 230400:
speed_c =3D B230400;
break;
+#endif
+#ifdef B460800
case 460800:
speed_c =3D B460800;
break;
+#endif
+#ifdef B921600
case 921600:
speed_c =3D B921600;
break;
+#endif
=20
default:
printf("Bad baudrate %d.\n", spd);
|