tabemann
tabemann
On Thu, May 9, 2024 at 3:38 PM bmentink ***@***.***> wrote: > I found the turnkey info in the wiki, so that is great. > You caught me just while...
On Thu, May 9, 2024, 17:21 bmentink ***@***.***> wrote: > Ok, just tried the latest stable build of chromium for macos arm64 and it > works fine .. > Good...
Okay, `adc-pin` on the RP2040 is garbage, don't use it; it was meant only for compatibility with STM32 platforms, but as I never used it, I did not realize it...
What is happening is that you are not calling `%00000001 clear-pwm-int` within `pwm_wrap_int` so `pwm_wrap_int` keeps on getting called in a tight loop forever, such that the USB interrupt handler...
No, in my API I did not provide a means for setting both the A and B compare fields at once. However, there is a way of doing it: ```...
On Fri, May 10, 2024 at 3:38 PM bmentink ***@***.***> wrote: > That worked great, thanks... I had a look at some of the drivers including > PWM to understand...
On Fri, May 10, 2024 at 4:47 PM bmentink ***@***.***> wrote: > Thanks, will do ... > Sorry for not offering more, but as you are doing hard real time...
On Fri, May 10, 2024 at 7:14 PM bmentink ***@***.***> wrote: > Not a problem at all. Did you have any idea's about macos compiling of > your code.. i.e...
An example of the GPIO interrupt in action can be found at https://github.com/tabemann/zeptoforth/blob/master/test/rp2040/lmt01_test_ssd1306.fs - note that `io-irq` is the IRQ number for the GPIO interrupt, `io-vector` is the vector index...
On Sun, May 12, 2024, 23:33 bmentink ***@***.***> wrote: > Thanks. Mach appreciated. > > By the way, what is the correct way to do init's. I notice you call...