Задать скорость ввода данных, хранящуюся в структуре termios
#include <termios.h>int cfsetispeed( struct termios *termios_p,speed_t speed );
<termios.h>
.libc
Функция cfsetispeed() устанавливает скорость ввода данных для struct termios, на которую указывает termios_p, в значение speed.
Корректную структуру struct termios для открытого устройства можно получить с помощью вызова tcgetattr().
|
#include <termios.h>#include <fcntl.h>#include <unistd.h>#include <stdlib.h>int main( void ){int fd;struct termios termios_p;speed_t speed;fd = open( "/dev/ser1", O_RDWR );tcgetattr( fd, &termios_p );/** Set input baud rate*/speed = 9600;cfsetispeed( &termios_p, speed );tcsetattr( fd, TCSADRAIN, &termios_p );close( fd );return (EXIT_SUCCESS);}
POSIX 1003.1
errno, cfgetispeed(), cfgetospeed(), cfsetospeed(), tcgetattr(), tcsetattr(), struct termios
Предыдущий раздел: Описание API системной библиотеки