Lines Matching defs:baud
320 if (speeds[speed_index].baud == camera->baud)
330 DBG (2, "unsupported baud rate.\n");
354 We need the device to be raw. 8 bits even parity on 9600 baud to start.
433 (int) speeds[speed_index].baud);
435 cfsetospeed (&tty_new, speeds[speed_index].baud);
436 cfsetispeed (&tty_new, speeds[speed_index].baud);
451 DBG (2, "init_dc210: error: no suitable baud rate\n");
458 cfsetospeed (&tty_new, Camera.baud);
459 cfsetispeed (&tty_new, Camera.baud);
474 * Put the camera back to 9600 baud
661 int baud;
671 Camera.baud = DEFAULT_BAUD_RATE;
698 else if (strncmp (dev_name, "baud=", 5) == 0)
700 baud = atoi (&dev_name[5]);
701 switch (baud)
704 Camera.baud = B9600;
707 Camera.baud = B19200;
710 Camera.baud = B38400;
714 Camera.baud = B57600;
719 Camera.baud = B115200;
723 DBG (20, "Config file baud=%d\n", Camera.baud);