Andrew Scheller
Andrew Scheller
Duplicate of #4150 > or if a fix is planned. Well, that issue has been open for 18 months now...
Fixed by #82 , so can be closed?
This has now been thoroughly documented in RP2350-E9 in https://datasheets.raspberrypi.com/rp2350/rp2350-datasheet.pdf and this issue seems to have gone quiet, so I guess this can be closed now?
> how to manually fix this myself See the RP2350-E9 erratum in https://datasheets.raspberrypi.com/rp2350/rp2350-datasheet.pdf
Not just "soon", https://www.raspberrypi.com/news/rp2350-a4-rp2354-and-a-new-hacking-challenge/ says "immediate availability" 🙂
I wonder if things like the "splash string", the "knock sequence", the "uart-bootloader baudrate", etc. ought to be defined in a header-file somewhere in `pico-sdk`? (As I assume they'll always...
ping @peterharperuk
> It looks like it may be a bug in micropython about PIO2 I think you might be right. From a quick look at the `rp2_pio.c` that you linked to,...
> [`pio_1hz.py`](https://github.com/raspberrypi/pico-micropython-examples/blob/master/pio/pio_1hz.py) prints: > `ValueError: freq out of range` Ahhh, looks like this is https://github.com/raspberrypi/pico-micropython-examples/issues/18 biting us again! :joy: (see additional discussion in https://github.com/micropython/micropython/issues/7025 ) With a 16-bit clock divisor,...
> then the delay slots look more complicated to a beginner I wonder if: ``` nop() [30] nop() [30] jmp(x_dec, "delay_low") ``` is "easier to read" than ``` nop() [30]...