#include <termios.h> #include <unistd.h> speed_t cfgetospeed ( struct termios *termios_p ); speed_t cfgetispeed ( struct termios *termios_p ); int cfsetospeed ( struct termios *termios_p, speed_t speed); int cfsetispeed ( struct termios *termios_p, speed_t speed);
tcgetattr 関数を使って現在の設定を読み込んだ後,上記の関数を使用して 回線スピードを設定し tcsetattr 関数を使って termios 構造体の変更を 反映させます.speed は,B0 から B38400 まで設定可能です.