Lines Matching defs:baud
365 if (speeds[speed_index].baud == camera->baud)
375 DBG (1, "unsupported baud rate.\n");
399 We need the device to be raw. 8 bits even parity on 9600 baud to start.
494 cfsetospeed (&tty_new, Camera.baud);
495 cfsetispeed (&tty_new, Camera.baud);
524 * Put the camera back to 9600 baud
818 SANE_Int baud;
828 Camera.baud = DEFAULT_BAUD_RATE;
855 else if (strncmp (dev_name, "baud=", 5) == 0)
857 baud = atoi (&dev_name[5]);
858 switch (baud)
861 Camera.baud = B9600;
864 Camera.baud = B19200;
867 Camera.baud = B38400;
871 Camera.baud = B57600;
876 Camera.baud = B115200;
880 DBG (20, "Config file baud=%d\n", Camera.baud);