Skip to content

Commit

Permalink
Update python path
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdrichard committed Dec 5, 2024
1 parent f59ac11 commit 820a909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ublox/ublox.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func (u *UBlox) UbloxPollInit() {
wait := 1000000000
args := []string{"-u", UBXCommand, "-t", "-P", "29.20", "-w", fmt.Sprintf("%d", wait)}
//python -u /usr/local/bin/ubxtool -t -p NAV-CLOCK -p NAV-STATUS -P 29.20 -w 10
u.cmd = exec.Command("python", args...)
u.cmd = exec.Command("python3", args...)
stdoutreader, _ := u.cmd.StdoutPipe()
u.reader = bufio.NewReader(stdoutreader)
u.setStatus(UBXTOOL_ACTIVE)
Expand Down

0 comments on commit 820a909

Please sign in to comment.