[Bug 434529] Re: Support for baudrate > 115200

2013-05-11 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gtkterm (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/434529

Title:
  Support for baudrate > 115200

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtkterm/+bug/434529/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 434529] Re: Support for baudrate > 115200

2010-09-08 Thread ichap...@videotron.ca
I'm running at 9600 bauds and that's okay.  Works well at 1 character
per second.  Full speed at 9600 and chunks of the data stream are
missing.  Regards Ian.

-- 
Support for baudrate > 115200
https://bugs.launchpad.net/bugs/434529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 434529] Re: Support for baudrate > 115200

2010-08-12 Thread Daniel Holbach
** Bug watch added: SourceForge.net Tracker #3043699
   http://sourceforge.net/support/tracker.php?aid=3043699

** Also affects: gtkterm via
   http://sourceforge.net/support/tracker.php?aid=3043699
   Importance: Unknown
   Status: Unknown

** Tags added: patch patch-forwarded-upstream

-- 
Support for baudrate > 115200
https://bugs.launchpad.net/bugs/434529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 434529] Re: Support for baudrate > 115200

2009-09-27 Thread JohnMayer
Ok, here's a patch for speed up to 100

Unfortunately I can't test it because I don't have any equipement
running at that speed

** Attachment added: "patch"
   http://launchpadlibrarian.net/32567183/patch

-- 
Support for baudrate > 115200
https://bugs.launchpad.net/bugs/434529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 434529] Re: Support for baudrate > 115200

2009-09-27 Thread dhd
I'd like 460800 as well please :)

-- 
Support for baudrate > 115200
https://bugs.launchpad.net/bugs/434529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 434529] Re: Support for baudrate > 115200

2009-09-22 Thread JohnMayer
Here is a simple patch to add support for baudrate 230400

diff -u orig/src/serie.c modif/src/serie.c
--- orig/src/serie.c2005-09-22 21:49:38.0 +0200
+++ modif/src/serie.c   2009-09-22 09:26:23.0 +0200
@@ -253,6 +253,9 @@
 case 115200:
   termios_p.c_cflag = B115200;
   break;
+case 230400:
+  termios_p.c_cflag = B230400;
+  break;
 }
   switch(config.bits)
 {

 diff -u orig/src/config.c modif/src/config.c
--- orig/src/config.c   2005-11-14 20:43:56.0 +0100
+++ modif/src/config.c  2009-09-22 09:27:42.0 +0200
@@ -216,6 +216,7 @@
   liste = g_list_append(liste, "38400");
   liste = g_list_append(liste, "57600");
   liste = g_list_append(liste, "115200");
+  liste = g_list_append(liste, "230400");
   gtk_combo_set_popdown_strings(GTK_COMBO(Combo), liste);
   gtk_combo_set_value_in_list(GTK_COMBO(Combo), TRUE, FALSE);
 
@@ -936,6 +937,7 @@
 case 38400:
 case 57600:
 case 115200:
+case 230400:
   break;
   
 default:

-- 
Support for baudrate > 115200
https://bugs.launchpad.net/bugs/434529
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs