Ai
1 Star 0 Fork 1

jackcoder/serial

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
termios_linux.go 253 Bytes
一键复制 编辑 原始数据 按行查看 历史
// +build !mips,!mipsle,!mips64,!mips64le
package serial
import (
"syscall"
)
func cfSetIspeed(termios *syscall.Termios, speed uint32) {
termios.Ispeed = speed
}
func cfSetOspeed(termios *syscall.Termios, speed uint32) {
termios.Ospeed = speed
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jackcoder8694/serial.git
git@gitee.com:jackcoder8694/serial.git
jackcoder8694
serial
serial
v0.1.0

搜索帮助