Add Go UART tool to query firmware VERSION over serial.

Framed protobuf client for /dev/ttyUSB0 at 921600 baud with generated
uart_messages types matching the device protocol.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-18 22:06:58 +02:00
co-authored by Cursor
parent a1629fb3db
commit bde4c473ef
6 changed files with 1308 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
module powerpod/gotool
go 1.26.2
require (
go.bug.st/serial v1.6.4
google.golang.org/protobuf v1.36.11
)
require (
github.com/creack/goselect v0.1.2 // indirect
golang.org/x/sys v0.19.0 // indirect
)