From: Mattias ?g. <mat...@us...> - 2001-03-02 14:29:15
|
The following file was modified in apps/bluetooth/experimental: Name Old version New version Comment ---- ----------- ----------- ------- bt_misc.c 1.1 1.2=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: added 921,6 kbps option int translate_speed The diff of the modified file(s): --- bt_misc.c 2001/03/02 10:59:57 1.1 +++ bt_misc.c 2001/03/02 14:30:32 1.2 @@ -280,6 +280,13 @@ case 460800: speed_c =3D B460800; break; + +#ifdef __CRIS__ + case 921600: + speed_c =3D B921600; + break; +#endif + default: printf("Bad baudrate %d.\n", spd); break; |