raspberry-pi-pico Questions
3
I have used the software Thonny to send programs to my raspberry pi pico. I am trying to make a specific program auto run when my pico is plugged in. At the moment another program which is on the p...
Sidonia asked 13/2, 2021 at 9:27
4
I'm trying to get multicore working on my pico,
#include <stdio.h>
#include "pico/stdlib.h"
#include "pico/multicore.h"
void core1_main()
{
stdio_init_all();
while (1...
Molnar asked 7/5, 2022 at 20:31
3
Solved
I use code from here. After running multiple times from Thonny without issue I got:
OSError: [Errno 12] ENOMEM
I used nuke.uf2 to clear storage on Raspberry Pi Pico W. The error re-occurred after...
Delaunay asked 22/12, 2022 at 2:17
4
I am using Circuit Python on a Raspberry Pi Pico to give me hardware buttons for keyboard shortcuts. I am using Circuit Python as opposed to MicroPython because it has the USB_HID library.
I don't ...
Schoenberg asked 21/2, 2021 at 18:2
3
Solved
I have the following instruction: mov r1, r7 in my assembly code but after looking into disassembly, I've found that actual generated code was adds r1, r7, #0
I checked with ARMv6-M Architecture Re...
Elect asked 6/3, 2022 at 21:8
1
© 2022 - 2024 — McMap. All rights reserved.