Timo Lang
Timo Lang
How do we proceed with this? Can we merge this, so that I can start rebasing the embedded-test stuff onto master?
@Yatekii @bugadani How can we move this ahead? I would really like to get embedded-test merged soon... Thank you
here is my output if I invoke`probe-rs run` on a binary which does two semihosting calls > > target/debug/probe-rs run --chip esp32c6 ../../embedded-test/embedded-test-example/target/riscv32imac-unknown-none-elf/debug/deps/example_test-ae604d781d4f9ebe Erasing ✔ [00:00:00] [#######################################################################################################################################################] 256.00 KiB/256.00 KiB...
The main idea are HIL Tests, where you have multiple probes connected to a computer and you want to run the different test (suites) on the different targets. When using...
Hei @japaric or @Urhengulas Can you look at this draft? I've removed the `udf` instruction to trigger a hard fault and instead use semihosting. (To my knowledge, riscv has no...
@SergioGasquez I'll probably abandon this, as I have created embedded-test now which is much more under our control. Also I feel that the testing framework shouldn't be coupled to whether...
Abandoning this, as I want to focus on [embedded-test](https://crates.io/crates/embedded-test) (which is now part of probe-rs)
I just wanted to open a tracking issue for the feature for now and to get some feedback on the topic... Would adding such a feature even be in scope...
Am I correct that the format strings indices are no longer sorted by log-level (or never were)? This would effectively mean that the device has currently no way to filter...
# Experiment 1: Add `esp_backtrace` to get more/alternative output. New dependencies in `Cargo.toml`: ```esp-backtrace = { version = "0.10.0", features = ["print-jtag-serial", "esp32c6"] }``` Modified function `c` in `main.rs`: ```rust...