Signed-off-by: Michael Heimpold <[email protected]>
---
 dio.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/dio.c b/dio.c
index 1a130a2..a4e8e7d 100644
--- a/dio.c
+++ b/dio.c
@@ -522,6 +522,26 @@ PHP_FUNCTION(dio_tcsetattr)
 
        /* assign to correct values... */
        switch (Baud_Rate)  {
+#ifdef B460800
+               case 460800:
+                       BAUD = B460800;
+                       break;
+#endif
+#ifdef B230400
+               case 230400:
+                       BAUD = B230400;
+                       break;
+#endif
+#ifdef B115200
+               case 115200:
+                       BAUD = B115200;
+                       break;
+#endif
+#ifdef B57600
+               case 57600:
+                       BAUD = B57600;
+                       break;
+#endif
                case 38400:
                        BAUD = B38400;
                        break;
-- 
2.5.0


-- 
PECL development discussion Mailing List (http://pecl.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to