next up previous
Next: tcsendbreak 関数他 Up: POSIX Terminal I/O Previous: tcgetattrtcsetattr 関数

cfgetispeed 関数他

#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 まで設定可能です.



Kazuo Nakayoshi
Thu Mar 15 18:48:09 JST 2001