svn commit: trunk/uClibc/libc/termios

pkj at uclibc.org pkj at uclibc.org
Wed Feb 22 08:27:24 UTC 2006


Author: pkj
Date: 2006-02-22 00:27:23 -0800 (Wed, 22 Feb 2006)
New Revision: 14193

Log:
* Allow baud rates above 115200 again.
* Added a couple of esoteric CRIS specific baud rates.


Modified:
   trunk/uClibc/libc/termios/cfsetspeed.c


Changeset:
Modified: trunk/uClibc/libc/termios/cfsetspeed.c
===================================================================
--- trunk/uClibc/libc/termios/cfsetspeed.c	2006-02-22 08:24:09 UTC (rev 14192)
+++ trunk/uClibc/libc/termios/cfsetspeed.c	2006-02-22 08:27:23 UTC (rev 14193)
@@ -91,7 +91,6 @@
 #ifdef B115200
     { 115200, B115200 },
 #endif
-#if 0 /* limited on uClibc, keep in sync w/ bits/termios.h */
 #ifdef B153600
     { 153600, B153600 },
 #endif
@@ -122,6 +121,9 @@
 #ifdef B1500000
     { 1500000, B1500000 },
 #endif
+#ifdef B1843200
+    { 1843200, B1843200 },
+#endif
 #ifdef B2000000
     { 2000000, B2000000 },
 #endif
@@ -137,7 +139,12 @@
 #ifdef B4000000
     { 4000000, B4000000 },
 #endif
+#ifdef B6250000
+    { 6250000, B6250000 },
 #endif
+#ifdef B12500000
+    { 12500000, B12500000 },
+#endif
   };
 
 




More information about the uClibc-cvs mailing list