diff --git a/sw/tools/bluegiga_usb_dongle/uart.c b/sw/tools/bluegiga_usb_dongle/uart.c index cdf74c8b6c..a872468de2 100644 --- a/sw/tools/bluegiga_usb_dongle/uart.c +++ b/sw/tools/bluegiga_usb_dongle/uart.c @@ -257,14 +257,17 @@ int uart_open(char *port) tcgetattr(serial_handle, &options); /* - * Set the baud rates to 115200... + * Set the baud rates... + * + * KLUDGE: Faster baudates not defined in MacOS X */ - //cfsetispeed(&options, B115200); - //cfsetospeed(&options, B115200); - +#ifdef __APPLE__ + cfsetispeed(&options, B230400); + cfsetospeed(&options, B230400); +#else cfsetispeed(&options, B921600); cfsetospeed(&options, B921600); - +#endif /*