Ryan H.
Ryan H.
I was just wondering myself how to gracefully handle such errors. Looking forward to a solution. Thanks!
I'm currently not able to get past the `import` presumably due to improper configuration. Currently I have Jest configured to work with Babel in my setup. Then, I've configured Babel...
Looks like `stage-0` is no longer a built-in option so I had to `npm install babel-preset-stage-0 --save-dev` then add `babel-preset-stage-0` to `presets` instead. It took about 3 seconds longer than...
Yes, I copied/pasted the `"env"` section exactly as is. For the `"presets"` section, I tried several combinations of `react-native`, `es2015` and `babel-preset-stage-0`.
Thanks for this fix. Wiring up the CS pin did not work for me but this did.
@Crash-- @eneskaya Thanks for the responses. I ended up using [react-native-cached-image](https://github.com/kfiroo/react-native-cached-image) instead which fixed the issue for me but I was not using the `key` property so, good to know.
If you look at the `stdio_usb_init` function in `pico-sdk/src/rp2_common/pico_stdio_usb/stdio_usb.c`, you'll see where it claims an IRQ: ``` #ifdef PICO_STDIO_USB_LOW_PRIORITY_IRQ user_irq_claim(PICO_STDIO_USB_LOW_PRIORITY_IRQ); #else low_priority_irq_num = (uint8_t) user_irq_claim_unused(true); #endif ``` But `low_priority_irq_num` is...
I played around with this some more and consistently reproduced the lockup. However, it turns out that there is no need to re-initialize stdio at all. Also, if you are...
I have the same issue. I downloaded `esp8285-1MB-at` from [here](https://github.com/espressif/esp-at/actions/runs/3592445311#artifacts). I also tried building from source (both 2.2.0 and 2.1.0) with the same result. The log output from GPIO2 starts...
Thanks. After carefully reading how the UART0 TX/RX-CTS/RTS swap works, I got it to work. I'll post my two solutions here in case someone else has the same issue. For...