Advertisement
ALTracer

probe-rs v0.25 scans GD32E5 via BMP

Jan 17th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. $ cargo-1.80 run -- info --probe 1d50:6018:3586399B3032 --protocol swd
  2. Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.32s
  3. Running `target/debug/probe-rs info --probe '1d50:6018:3586399B3032' --protocol swd`
  4. Probing target via SWD
  5.  
  6. ARM Chip with debug port Default:
  7. Debug Port: DPv2, MINDP, Designer: STMicroelectronics, Part: 0x0, Revision: 0xf, Instance: 0x0f
  8. └── 0 MemoryAP (AmbaAhb5)
  9. └── Error during access: The selected probe does not support the 'ARM' interface.
  10.  
  11.  
  12. 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.
  13. Debugging Xtensa targets over SWD is not supported. For these targets, JTAG is the only supported protocol. Xtensa specific information cannot be printed.
  14.  
  15. $ cargo-1.80 run -- info --probe 1d50:6018:3586399B3032 --protocol jtag
  16. Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.32s
  17. Running `target/debug/probe-rs info --probe '1d50:6018:3586399B3032' --protocol jtag`
  18. Probing target via JTAG
  19.  
  20. thread 'main' panicked at probe-rs/src/probe/blackmagic/arm.rs:108:40:
  21. called `Result::unwrap()` on an `Err` value: Probe(Other("probe returned unexpected result: 1997857035"))
  22. note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
  23. $ env RUST_BACKTRACE=1 cargo-1.80 run -- info --probe 1d50:6018:3586399B3032 --protocol jtag
  24. Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.33s
  25. Running `target/debug/probe-rs info --probe '1d50:6018:3586399B3032' --protocol jtag`
  26. Probing target via JTAG
  27.  
  28. thread 'main' panicked at probe-rs/src/probe/blackmagic/arm.rs:108:40:
  29. called `Result::unwrap()` on an `Err` value: Probe(Other("probe returned unexpected result: 1997857035"))
  30. stack backtrace:
  31. 0: rust_begin_unwind
  32. at /build/rustc-1.80-3U1vnV/rustc-1.80-1.80.1+dfsg0ubuntu1~bpo0/library/std/src/panicking.rs:652:5
  33. 1: core::panicking::panic_fmt
  34. at /build/rustc-1.80-3U1vnV/rustc-1.80-1.80.1+dfsg0ubuntu1~bpo0/library/core/src/panicking.rs:72:14
  35. 2: core::result::unwrap_failed
  36. at /build/rustc-1.80-3U1vnV/rustc-1.80-1.80.1+dfsg0ubuntu1~bpo0/library/core/src/result.rs:1679:5
  37. 3: core::result::Result<T,E>::unwrap
  38. at /build/rustc-1.80-3U1vnV/rustc-1.80-1.80.1+dfsg0ubuntu1~bpo0/library/core/src/result.rs:1102:23
  39. 4: probe_rs::probe::blackmagic::arm::BlackMagicProbeArmDebug::new
  40. at ./probe-rs/src/probe/blackmagic/arm.rs:108:9
  41. 5: <probe_rs::probe::blackmagic::arm::UninitializedBlackMagicArmProbe as probe_rs::architecture::arm::communication_interface::UninitializedArmProbe>::initialize
  42. at ./probe-rs/src/probe/blackmagic/arm.rs:72:25
  43. 6: probe_rs::cmd::info::try_show_arm_dp_info::{{closure}}
  44. at ./probe-rs-tools/src/bin/probe-rs/cmd/info.rs:228:13
  45. 7: core::result::Result<T,E>::and_then
  46. at /build/rustc-1.80-3U1vnV/rustc-1.80-1.80.1+dfsg0ubuntu1~bpo0/library/core/src/result.rs:1346:22
  47. 8: probe_rs::cmd::info::try_show_arm_dp_info
  48. at ./probe-rs-tools/src/bin/probe-rs/cmd/info.rs:224:11
  49. 9: probe_rs::cmd::info::try_show_info
  50. at ./probe-rs-tools/src/bin/probe-rs/cmd/info.rs:132:15
  51. 10: probe_rs::cmd::info::Cmd::run
  52. at ./probe-rs-tools/src/bin/probe-rs/cmd/info.rs:71:39
  53. 11: probe_rs::main
  54. at ./probe-rs-tools/src/bin/probe-rs/main.rs:317:34
  55. 12: core::ops::function::FnOnce::call_once
  56. at /build/rustc-1.80-3U1vnV/rustc-1.80-1.80.1+dfsg0ubuntu1~bpo0/library/core/src/ops/function.rs:250:5
  57. note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement