@@ -13,7 +13,7 @@ Assuming you are at the root of the repository you can build like this:
1313
1414``` console
1515$ cd testsuite
16- $ cargo build --features semihosting
16+ $ cargo build
1717 Compiling testsuite v0.1.0 (cortex-m/testsuite)
1818 Finished dev [unoptimized + debuginfo] target(s) in 0.08
1919```
@@ -27,7 +27,7 @@ For more information on QEMU reference the QEMU section in [The Embedded Rust Bo
2727
2828``` console
2929$ cd testsuite
30- $ cargo run --features semihosting
30+ $ cargo run
3131 Finished dev [unoptimized + debuginfo] target(s) in 0.01s
3232 Running `qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable=on,target=native -kernel /cortex-m/target/thumbv7m-none-eabi/debug/testsuite`
3333Timer with period zero, disabling
@@ -40,10 +40,10 @@ all tests passed!
4040
4141No implementation-specific features are tested right now; any physical ` thumbv7m ` target should work.
4242
43- Tests are executed with [ probe-run ] ( https://github.com/knurling -rs/probe-run ) .
43+ Tests are executed with [ probe-rs ] ( https://github.com/probe -rs/probe-rs ) .
4444
4545* Update ` memory.x ` in the root of the repository to match your target memory layout.
46- * Change the ` probe-run ` chip argument to match your chip, supported chips can be found with ` probe-run -- list-chips `
46+ * Change the ` probe-rs ` chip argument to match your chip, supported chips can be found with ` probe-rs chip list `
4747* Change the target to match your CPU
4848
4949``` console
@@ -53,7 +53,7 @@ $ cargo build --target thumbv7em-none-eabi --features rtt
5353 Compiling minitest v0.1.0 (/cortex-m/testsuite/minitest)
5454 Compiling testsuite v0.1.0 (/cortex-m/testsuite)
5555 Finished dev [unoptimized + debuginfo] target(s) in 0.16s
56- $ probe-run --chip STM32WLE5JCIx --connect-under-reset ../target/thumbv7em-none-eabi/debug/testsuite
56+ $ probe-rs run --chip STM32WLE5JCIx --connect-under-reset ../target/thumbv7em-none-eabi/debug/testsuite
5757(HOST) INFO flashing program (19 pages / 19.00 KiB)
5858(HOST) INFO success!
5959────────────────────────────────────────────────────────────────────────────────
0 commit comments