You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is the Ticker functions implemented on RP Pico? Whenever I try to use them, I get this loader error about missing libs.
tinygo:ld.lld: error: undefined symbol: time.startTimer
>>> referenced by tick.go:39 (/usr/local/go/src/time/tick.go:39)
>>> /tmp/tinygo88041620/main.o:(tinyproj/bldc.test$gowrapper)
failed to run tool: ld.lld
error: failed to link /tmp/tinygo88041620/main: exit status 1
As a simple test, I am running the following function:
func test() {
for tick := range time.Tick(3 * time.Second) {
fmt.Println(".", tick)
}
}
The text was updated successfully, but these errors were encountered:
Is the Ticker functions implemented on RP Pico? Whenever I try to use them, I get this loader error about missing libs.
As a simple test, I am running the following function:
The text was updated successfully, but these errors were encountered: