Searched refs:baud (Results 1 - 9 of 9) sorted by relevance
/third_party/backends/backend/ |
H A D | dc210.c | 320 if (speeds[speed_index].baud == camera->baud) in init_dc210() 330 DBG (2, "unsupported baud rate.\n"); in init_dc210() 354 We need the device to be raw. 8 bits even parity on 9600 baud to start. in init_dc210() 433 (int) speeds[speed_index].baud); in init_dc210() 435 cfsetospeed (&tty_new, speeds[speed_index].baud); in init_dc210() 436 cfsetispeed (&tty_new, speeds[speed_index].baud); in init_dc210() 451 DBG (2, "init_dc210: error: no suitable baud rate\n"); in init_dc210() 458 cfsetospeed (&tty_new, Camera.baud); in init_dc210() 459 cfsetispeed (&tty_new, Camera.baud); in init_dc210() 661 int baud; sane_init() local [all...] |
H A D | dc240.c | 365 if (speeds[speed_index].baud == camera->baud) in init_dc240() 375 DBG (1, "unsupported baud rate.\n"); in init_dc240() 399 We need the device to be raw. 8 bits even parity on 9600 baud to start. in init_dc240() 494 cfsetospeed (&tty_new, Camera.baud); in init_dc240() 495 cfsetispeed (&tty_new, Camera.baud); in init_dc240() 524 * Put the camera back to 9600 baud in close_dc240() 818 SANE_Int baud; in sane_init() local 828 Camera.baud = DEFAULT_BAUD_RATE; in sane_init() 855 else if (strncmp (dev_name, "baud in sane_init() [all...] |
H A D | dc210.h | 88 speed_t baud; /* current tty speed */ member 127 * 0x96 0x00 -> 9600 baud 128 * 0x19 0x20 -> 19200 baud 129 * 0x38 0x40 -> 38400 baud 130 * 0x57 0x60 -> 57600 baud 131 * 0x11 0x52 -> 115200 baud 155 speed_t baud; member
|
H A D | dc240.h | 91 speed_t baud; /* current tty speed */ member 130 * 0x96 0x00 -> 9600 baud 131 * 0x19 0x20 -> 19200 baud 132 * 0x38 0x40 -> 38400 baud 133 * 0x57 0x60 -> 57600 baud 134 * 0x11 0x52 -> 115200 baud 163 speed_t baud; member
|
H A D | dc25.c | 403 if (speeds[speed_index].baud == speed) in init_dc20() 413 DBG (2, "unsupported baud rate.\n"); in init_dc20() 436 We need the device to be raw. 8 bits even parity on 9600 baud to start. in init_dc20() 468 (int) speeds[speed_index].baud); in init_dc20() 470 cfsetospeed (&tty_new, speeds[speed_index].baud); in init_dc20() 471 cfsetispeed (&tty_new, speeds[speed_index].baud); in init_dc20() 485 DBG (2, "init_dc20: error: no suitable baud rate\n"); in init_dc20() 511 * Put the camera back to 9600 baud in close_dc20() 1652 * WARNING: now we set the serial port to 9600 baud! in shoot() 1813 int baud; in sane_init() local [all...] |
H A D | dc25.h | 126 * 0x96 0x00 -> 9600 baud 127 * 0x19 0x20 -> 19200 baud 128 * 0x38 0x40 -> 38400 baud 129 * 0x57 0x60 -> 57600 baud 130 * 0x11 0x52 -> 115200 baud 149 speed_t baud; member
|
/third_party/toybox/toys/pending/ |
H A D | stty.c | 56 static int baud(speed_t speed) in baud() function 62 static speed_t speed(int baud) in speed() argument 66 for (i=0;i<ARRAY_LEN(bauds);i++) if (bauds[i] == baud) break; in speed() 67 if (i == ARRAY_LEN(bauds)) error_exit("unknown speed: %d", baud); in speed() 192 int ispeed = baud(cfgetispeed(t)), ospeed = baud(cfgetospeed(t)); in show_speed() 193 char *fmt = verbose ? "ispeed %d baud; ospeed %d baud;" : "%d %d\n"; in show_speed()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | termios.rs | 50 //! support arbitrary baud rates as the values of the `BaudRate` enum constants are the same integer 60 //! The most common use case of specifying a baud rate using the enum will work the same across 73 //! Additionally round-tripping baud rates is consistent across platforms: 185 //! And on BSDs you can specify arbitrary baud rates (**note** this depends on hardware support) 186 //! by specifying baud rates directly using `u32`s: 354 /// For the BSDs, arbitrary baud rates can be specified by using `u32`s directly instead of this 999 /// Get input baud rate (see 1002 /// `cfgetispeed()` extracts the input baud rate from the given `Termios` structure. 1010 /// Get output baud rate (see 1013 /// `cfgetospeed()` extracts the output baud rat [all...] |
/third_party/libwebsockets/scripts/ |
H A D | esp32.mk | 100 --baud $(CONFIG_ESPTOOLPY_BAUD) \ 107 --baud $(CONFIG_ESPTOOLPY_BAUD) \
|
Completed in 9 milliseconds