diff options
author | xengineering <me@xengineering.eu> | 2024-05-30 17:10:08 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-30 17:10:08 +0200 |
commit | 034c8209f6e6f17bf5b6f265e2a3ef58f05b2c80 (patch) | |
tree | a55fe5012f78f6725ef15b2a8afe8b9e7b677d94 /software/communication/interface.go | |
parent | 96d159114af675d55fe0d7c0f22a69d65e9563fc (diff) | |
download | iot-core-034c8209f6e6f17bf5b6f265e2a3ef58f05b2c80.tar iot-core-034c8209f6e6f17bf5b6f265e2a3ef58f05b2c80.tar.zst iot-core-034c8209f6e6f17bf5b6f265e2a3ef58f05b2c80.zip |
software: Switch back from .Log() to .Cat()
Logging the bytes is not really readable because of time stamp prefixes.
Diffstat (limited to 'software/communication/interface.go')
-rw-r--r-- | software/communication/interface.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/software/communication/interface.go b/software/communication/interface.go index d6111cc..672617e 100644 --- a/software/communication/interface.go +++ b/software/communication/interface.go @@ -2,7 +2,6 @@ package communication import ( "fmt" - "log" "go.bug.st/serial" ) @@ -32,13 +31,13 @@ func NewSerialInterface() (SerialInterface, error) { return iface, nil } -func (i *SerialInterface) Log() { +func (i *SerialInterface) Cat() error { for { data, err := i.Read() if err != nil { - log.Fatal(err) + return err } - log.Printf("RX: '%s'\n", string(data)) + fmt.Printf("%s", string(data)) } } |