Name
uart_get_baud_rate-- return baud rate for a particular port
Arguments
- port
-
uart_port structure describing the port in question.
termios
-
desired termios settings.
old
-
old termios (or NULL)
min
-
minimum acceptable baud rate
max
-
maximum acceptable baud rate
Description
Decode the termios structure into a numeric baud rate, taking account of the magic 38400 baud rate (with spd_* flags), and mapping the B0 rate to 9600 baud.
If the new baud rate is invalid, try the old termios setting. If it's still invalid, we try 9600 baud.
Update the termios structure to reflect the baud rate we're actually going to be using.
本文介绍了一个用于获取特定串行端口波特率的函数uart_get_baud_rate。该函数通过解析termios结构来确定实际使用的波特率,并考虑到特殊波特率设置的情况。
1152

被折叠的 条评论
为什么被折叠?



