diff options
| author | Kevin Wallace <kevin@pentabarf.net> | 2026-04-26 10:29:08 -0700 |
|---|---|---|
| committer | Kevin Wallace <kevin@pentabarf.net> | 2026-04-26 10:43:21 -0700 |
| commit | eb13241672e34b7d982f0644aa9bced34edcf493 (patch) | |
| tree | 8646d45d5ea6dbae51b6f43b0d1ed9b3d3d4f633 /cmd/orca | |
| parent | cvend wip (diff) | |
Diffstat (limited to 'cmd/orca')
| -rw-r--r-- | cmd/orca/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/orca/main.go b/cmd/orca/main.go index a068617..5d292e2 100644 --- a/cmd/orca/main.go +++ b/cmd/orca/main.go @@ -101,7 +101,7 @@ func cvendTask(out chan<- cvendState) { go func() { // send periodic status requests to keep cvend from going to sleep for { time.Sleep(30 * time.Second) - if err := cv.SendIPP(0x04, nil); err != nil { + if err := cv.SendIPP(0x04, 0, nil); err != nil { log.Printf("failed to send Status: %s", err) } } |