debugprobe
debugprobe copied to clipboard
bridges 2nd hardware UART over USB-CDC as tty1 New CDC_UARTS count placed in CMakeLists.txt to ensure tusb_config.h and cdc_uart.c can see it. CMakeLists.txt, picoprobe_config.h, board_pico_config.h, tusb_config.h, main.c, cdc_uart.h, cdc_uart.c, usb_descriptors.c...
@fpaterra , Hello, I'm encountering the same issue with the Pico Probe. Have you had any success in resolving it? I attempted to address it by installing various versions of...
It seems that `bcdDevice` was not updated in `usb_descriptors.c`. The version info should probably come from a ENV variable during the release process.
Hello. I want to build a project. I'm doing it step by step as stated in Hacking. When I run the make command I get an error.  How to...
Hello, I'm testing the debugprobe (hardware tool) in my mac os. I've installed all the binaries like documentation describes. After doing everything I did the following command in console ```bash...
Given that we already swap probe programs in and out of PIO on the fly, it would be easy enough to add JTAG support. How does PIO assist in this...
probe.c only includes probe.pio.h only. It doesn't include defines two switch the probe_oen.pio.h version. ` #if defined(PROBE_IO_RAW) || defined(PROBE_IO_SWDI) #include "probe.pio.h" #endif #if defined(PROBE_IO_OEN) #include "probe_oen.pio.h" #endif ` I added...
Disabling the UART in the board file only disables the pin defines, it doesn't exclude the UART functions and causes error.
Hi All, The problem I'm having getting picoprobe debug started relates to the title of this issue ticket. I'm using the Arduino-ide v-2.2.1 along with a Raspberry Pi pico setup...
Hi, I was wondering if it was possible to use the UART pins as a second SWD interface. This way, I can leverage one picoprobe to debug two picos, instead...