最終更新:2013-03-06 (水) 18:36:23 (4063d)  

termios.h
Top / termios.h

  • speed_t cfgetispeed?(const struct termios *t) - 入力ボーレートを返す
  • int cfsetispeed(struct termios *t, speed_t speed) - 入力ボーレートを speed の値に設定
  • speed_t cfgetospeed?(const struct termios *t) - 出力ボーレートを返す
  • int cfsetospeed?(struct termios *t, speed_t speed) - 出力ボーレートを speed の値に設定
  • int cfsetspeed?(struct termios *t, speed_t speed) - 入力および出力ボーレートの両方を speed の値に設定
  • void cfmakeraw?(struct termios *t) - termios 構造に保存されたフラグをすべての入力および 出力処理を無効にする状態に設定
  • int tcgetattr(int fd, struct termios *t) - fd に関するパラメータを取得し、termiosに設定する
  • int tcsetattr(int fd, int action, const struct termios *t) - 端末に関連したパラメータを設定する

ボーレート

  • 入力ボーレート?
  • 出力ボーレート?

関連