File tree Expand file tree Collapse file tree 4 files changed +5
-39
lines changed Expand file tree Collapse file tree 4 files changed +5
-39
lines changed Original file line number Diff line number Diff line change 1
- [target.thumbv6m-none-eabi]
2
- runner = 'gdb-multiarch'
3
- rustflags = [
4
- "-C", "link-arg=-Tlink.x",
5
- ]
6
-
7
- [target.thumbv7m-none-eabi]
8
- runner = 'gdb-multiarch'
9
- rustflags = [
10
- "-C", "link-arg=-Tlink.x",
11
- ]
12
-
13
- [target.thumbv7em-none-eabi]
14
- runner = 'gdb-multiarch'
15
- rustflags = [
16
- "-C", "link-arg=-Tlink.x",
17
- ]
18
-
19
- [target.thumbv7em-none-eabihf]
20
- runner = 'gdb-multiarch'
1
+ [target.'cfg(all(target_arch = "arm", target_os = "none"))']
2
+ runner = "probe-run --chip STM32F103C8"
21
3
rustflags = [
22
4
"-C", "link-arg=-Tlink.x",
23
5
]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- .gdb_history
2
1
/target /
3
2
** /* .rs.bk
4
3
Cargo.lock
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ Please consider [becoming a sponsor](https://github.com/sponsors/jamwaffles/) so
16
16
17
17
## [ Examples] ( examples )
18
18
19
+ This crate uses [ ` probe-run ` ] ( https://crates.io/crates/probe-run ) to run the examples. Once set up,
20
+ it should be as simple as ` cargo run --example <example name> --release ` .
21
+
19
22
From [ ` examples/image_i2c.rs ` ] ( examples/image_i2c.rs ) :
20
23
21
24
``` rust
You can’t perform that action at this time.
0 commit comments