chore: bump periph.io dependencies

This commit is contained in:
2022-01-02 23:29:08 +01:00
parent 3a07aabde0
commit 7bc5560cdc
208 changed files with 12350 additions and 13205 deletions

View File

@@ -313,6 +313,10 @@ func Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err error) {
return
}
func Send(s int, buf []byte, flags int) (err error) {
return sendto(s, buf, flags, nil, 0)
}
func Sendto(fd int, p []byte, flags int, to Sockaddr) (err error) {
ptr, n, err := to.sockaddr()
if err != nil {