Open FabienTregan opened 4 months ago
After building the current main commit (13dd5d1
), it probe-rs list behaves as intended:
$ probe-rs info
Probing target via JTAG
Error identifying target using protocol JTAG: The probe does not support the JTAG protocol.
Probing target via SWD
ARM Chip with debug port Default:
Debug Port: DPv2, MINDP, Designer: Raspberry Pi Trading Ltd, Part: 0x1002, Revision: 0x0, Instance: 0x00
└── 0 MemoryAP
└── ROM Table (Class 1), Designer: ARM Ltd
├── Cortex-M0 SCS (Generic IP component)
│ └── CPUID
│ ├── IMPLEMENTER: ARM Ltd
│ ├── VARIANT: 0
│ ├── PARTNO: Cortex-M0+
│ └── REVISION: 1
├── Cortex-M0 DWT (Generic IP component)
└── Cortex-M0 BPU (Generic IP component)
Debugging RISC-V targets over SWD is not supported. For these targets, JTAG is the only supported protocol. RISC-V specific information cannot be printed.
Debugging Xtensa targets over SWD is not supported. For these targets, JTAG is the only supported protocol. Xtensa specific information cannot be printed.
but even after forcing RTT on:
cmd: show
5.319 (...) - (II) magic 0xfeedbabe
5.319 ( 0) - (II) name: config
5.319 ( 0) - (II) size: 17
5.319 ( 0) - (II) ------------- device configuration
5.319 ( 0) - [config]
5.320 ( 1) - rtt=1
5.320 ( 0) - (II) -------------
probe-rs still can't attach RTT:
warning: `k-hz50` (bin "k-hz50") generated 1 warning (run `cargo fix --bin "k-hz50"` to apply 1 suggestion)
Finished `dev` profile [optimized + debuginfo] target(s) in 0.04s
Running `probe-rs run --chip RP2040 --protocol swd target/thumbv6m-none-eabi/debug/k-hz50`
Erasing ✔ [00:00:00] [#############################################################################################] 16.00 KiB/16.00 KiB @ 120.55 KiB/s (eta 0s )
Programming ✔ [00:00:00] [##############################################################################################] 16.00 KiB/16.00 KiB @ 33.35 KiB/s (eta 0s ) Finished in 0.646s
Error: Failed to attach to RTT
Caused by:
Error attempting to attach to RTT: RTT control block not found in target memory.
- Make sure RTT is initialized on the target, AND that there are NO target breakpoints before RTT initialization.
- For VSCode and probe-rs-debugger users, using `halt_after_reset:true` in your `launch.json` file will prevent RTT
initialization from happening on time.
- Depending on the target, sleep modes can interfere with RTT.
ok... seems like I have to check the release images.
For RTT you actually have to do nothing with yapicoprobe except attaching a terminal program to one of the probes VCOM ports.
Could you please try the latest release images?: https://github.com/rgrr/yapicoprobe/releases/tag/v1.21
Hi,
I have a pico clone board (the purple ones) that I can flash with the official picoprobe firmware without any problem. I want to try yapicoprobe (mainly to have RTT).
Using the latest release firmware (yapicoprobe-0120-pico-f726bca.uf2), the probe don't even enumerate. (nothing in
dmesg
output)Using the previous release ( yapicoprobe-0118-pico-a7a8881.uf2 ), it probe-rs finds it but can't apparently communicate:
Output of same commands with the official debugprobe for pico firmware:
Any idea what I am doing wrong? Is the pinout the same as for the original firmware?
(I copied the udev config as said in the readme and rebooted)
thanks, Fabien.