Ayke

Results 450 comments of Ayke

How much delay do you need here to fix the problem? I can think of two possible reasons why this happens: 1. If the power comes up at the same...

This sounds like you have something wrong with your wiring. A few things to check: * Is the ground of the WS2812 strip connected to the ground of the RP2040...

> Running with [wasmer](https://wasmer.io/): > > ```shell > wasmer run ./tinygo-gc-debug.wasm --entrypoint boot > ``` Don't specify a different entrypoint. This likely causes the crash you're seeing. Just let `_start`...

> looks like iphone6 safari not support `0xffffffffn` Probably, yeah. The iPhone 6 is 9 years old by now, and is not supported by Apple anymore. I'm afraid we can't...

Is there anybody able to provide a reproducer? If you try to reproduce, here are a few ways to increase success: * Remove cached files between runs: `rm ~/.cache/tinygo/obj-*` (or...

Yes it is similar in the sense that it is a race of some sort, but for #3062 we found a specific cause that we fixed in https://github.com/tinygo-org/tinygo/pull/3920. The current...

To all the people reporting crashes: _please provide a reproducer_. I can't debug this without a reproducer, I have to see the crash happening on my own system. Getting more...

For the record, apparently this command failed at some point in CI (CC @dkegel-fastly): ``` tinygo build -size short -o test.hex -target=nano-rp2040 examples/rtcinterrupt ``` EDIT: this doesn't seem to reproduce...

I've found a reliable reproducer! Run this in the fish shell in ./tests/os/smoke: ``` while true; rm ~/.cache/tinygo/pkg-*; tinygo test -c -target=pybadge; end ``` > I think the race condition...

Found a race condition! ~I don't know whether it's the big one~ (edit: it's not) but it's a race so should be fixed: https://github.com/tinygo-org/tinygo/pull/4243