Skip to content

Commit

Permalink
Fixed BaudRate for compatibility with true RS232 connected devices
Browse files Browse the repository at this point in the history
  • Loading branch information
bas-dehaan committed Jun 14, 2023
1 parent bcdc4d5 commit 0beb9f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MT_SICS.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
func Connect(port string) (io.ReadWriteCloser, error) {
options := serial.OpenOptions{
PortName: port,
BaudRate: 115200,
BaudRate: 9600,
DataBits: 8,
StopBits: 1,
MinimumReadSize: 4,
Expand Down

0 comments on commit 0beb9f4

Please sign in to comment.