基本介紹,頭檔案,函式原型,參數,返回值,
基本介紹
對於波特率的設定通常使用cfsetospeed和cfsetispeed函式來完成。獲取波特率信息是通過cfgetispeed和cfgetospeed函式來完成的。
頭檔案
#include<termios.h>
函式原型
intcfsetospeed(struct termios *termptr, speed_t speed);
參數
struct termios*termptr ----------- 指向termios結構的指針
speed_t speed------------------- 需要設定的輸出波特率
返回值
如果成功返回0,否則返回-1