Skip to content

Commit dfb2578

Browse files
committed
modules: update to latest serial and espflash packages
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent 1f4e303 commit dfb2578

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

go.mod

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,17 @@ require (
1313
github.com/mattn/go-tty v0.0.4
1414
github.com/sigurn/crc16 v0.0.0-20211026045750-20ab5afb07e3
1515
github.com/tetratelabs/wazero v1.6.0
16-
go.bug.st/serial v1.6.2
16+
go.bug.st/serial v1.6.4
1717
golang.org/x/net v0.35.0
1818
golang.org/x/sys v0.30.0
1919
golang.org/x/tools v0.30.0
2020
gopkg.in/yaml.v2 v2.4.0
21-
tinygo.org/x/espflash v0.2.0
21+
tinygo.org/x/espflash v0.3.0
2222
tinygo.org/x/go-llvm v0.0.0-20250422114502-b8f170971e74
2323
)
2424

2525
require (
2626
github.com/creack/goselect v0.1.2 // indirect
2727
github.com/mattn/go-isatty v0.0.20 // indirect
28-
github.com/stretchr/testify v1.8.4 // indirect
2928
golang.org/x/text v0.22.0 // indirect
3029
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcU
3333
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
3434
github.com/tetratelabs/wazero v1.6.0 h1:z0H1iikCdP8t+q341xqepY4EWvHEw8Es7tlqiVzlP3g=
3535
github.com/tetratelabs/wazero v1.6.0/go.mod h1:0U0G41+ochRKoPKCJlh0jMg1CHkyfK8kDqiirMmKY8A=
36-
go.bug.st/serial v1.6.2 h1:kn9LRX3sdm+WxWKufMlIRndwGfPWsH1/9lCWXQCasq8=
37-
go.bug.st/serial v1.6.2/go.mod h1:UABfsluHAiaNI+La2iESysd9Vetq7VRdpxvjx7CmmOE=
36+
go.bug.st/serial v1.6.4 h1:7FmqNPgVp3pu2Jz5PoPtbZ9jJO5gnEnZIvnI1lzve8A=
37+
go.bug.st/serial v1.6.4/go.mod h1:nofMJxTeNVny/m6+KaafC6vJGj3miwQZ6vW4BZUGJPI=
3838
golang.org/x/mod v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM=
3939
golang.org/x/mod v0.23.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
4040
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
@@ -58,7 +58,7 @@ gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
5858
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
5959
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
6060
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
61-
tinygo.org/x/espflash v0.2.0 h1:sHDeMVaiJ0kEosCYgkiAHjSCV9+/mgQZMKy7nOXWVoQ=
62-
tinygo.org/x/espflash v0.2.0/go.mod h1:n4sWxsjN4wjHN1lKfEYjXke6/eSeLTq/lRRLJS5FNfg=
61+
tinygo.org/x/espflash v0.3.0 h1:uhTOWZb1FyQ4MZTZWORh/bOLFQfaFr2nuM9t3pJExRM=
62+
tinygo.org/x/espflash v0.3.0/go.mod h1:n4sWxsjN4wjHN1lKfEYjXke6/eSeLTq/lRRLJS5FNfg=
6363
tinygo.org/x/go-llvm v0.0.0-20250422114502-b8f170971e74 h1:ovavgTdIBWCH8YWlcfq9gkpoyT1+IxMKSn+Df27QwE8=
6464
tinygo.org/x/go-llvm v0.0.0-20250422114502-b8f170971e74/go.mod h1:GFbusT2VTA4I+l4j80b17KFK+6whv69Wtny5U+T8RR0=

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
"github.com/tinygo-org/tinygo/goenv"
3333
"github.com/tinygo-org/tinygo/loader"
3434
"golang.org/x/tools/go/buildutil"
35-
"tinygo.org/x/espflash"
35+
"tinygo.org/x/espflash/pkg/espflash"
3636
"tinygo.org/x/go-llvm"
3737

3838
"go.bug.st/serial"

0 commit comments

Comments
 (0)