项目作者: xluohome

项目描述 :
Go语言实现的uart串口发送和接收接口包,跨平台支持
高级语言: Go
项目地址: git://github.com/xluohome/serial.git
创建时间: 2020-02-11T08:29:40Z
项目社区:https://github.com/xluohome/serial

开源协议:BSD 3-Clause "New" or "Revised" License

关键词:
mcu mcuuart serialport txrx uart

下载


GoDoc

Serial

Serial 是一个Go语言实现的串口(Uart)接口包,可使用操作系统标准的 read 和 write 文件接口
实现串口字节流的接收和发送。

默认配置

8 N 1 N (数据位: 8 奇偶校验: N 停止位: 1 数据流控: N)

代码使用

  1. package main
  2. import (
  3. "log"
  4. "github.com/xluohome/serial"
  5. )
  6. func main() {
  7. c := &serial.Config{Name: "COM9", Baud: 9600}
  8. s, err := serial.OpenPort(c)
  9. if err != nil {
  10. log.Fatal(err)
  11. }
  12. txbuf := []byte{0xAA, 0x01, 0x0f, 0x00, 0x00, 0xBA}
  13. n, err := s.Write(txbuf)
  14. if err != nil {
  15. log.Fatal(err)
  16. }
  17. buf := make([]byte, 128)
  18. n, err = s.Read(buf)
  19. if err != nil {
  20. log.Fatal(err)
  21. }
  22. log.Printf("%X\n", buf[:n])
  23. }

非阻塞模式

By default the returned Port reads in blocking mode. Which means
Read() will block until at least one byte is returned. If that’s not
what you want, specify a positive ReadTimeout and the Read() will
timeout returning 0 bytes if no bytes are read. Please note that this
is the total timeout the read operation will wait and not the interval
timeout between two bytes.

  1. c := &serial.Config{Name: "COM45", Baud: 115200, ReadTimeout: time.Second * 5}
  2. // In this mode, you will want to suppress error for read
  3. // as 0 bytes return EOF error on Linux / POSIX
  4. n, _ = s.Read(buf)