Use 115.2 kbps instead of 9600 bps.
authorBen Pfaff <blp@cs.stanford.edu>
Fri, 8 Oct 2004 05:25:54 +0000 (05:25 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Fri, 8 Oct 2004 05:25:54 +0000 (05:25 +0000)
src/devices/serial.c

index 099b22841efeafd4289f718210ffb592f8148f57..aca5b481aeb9110b3382ab01c3c4f062ebb1d7b2 100644 (file)
@@ -63,7 +63,7 @@ serial_init_poll (void)
   ASSERT (mode == UNINIT);
   outb (IER_REG, 0);                    /* Turn off all interrupts. */
   outb (FCR_REG, 0);                    /* Disable FIFO. */
-  set_serial (9600);                    /* 9600 bps, N-8-1. */
+  set_serial (115200);                  /* 115.2 kbps, N-8-1. */
   outb (MCR_REG, MCR_OUT2);             /* Turn on OUT2 output line. */
   intq_init (&txq, "serial xmit");
   mode = POLL;