Skip to content

Commit 098ca7e

Browse files
authored
After reset, the core is running (#588)
1 parent 495c3dc commit 098ca7e

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

humility-bin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[package]
1919
name = "humility-bin"
2020
edition.workspace = true
21-
version = "0.12.11"
21+
version = "0.12.12"
2222
license = "MPL-2.0"
2323

2424
[build-dependencies]

humility-bin/tests/cmd/chip.trycmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ For more information try --help
1313

1414
```
1515
$ humility --chip this-can-be-anything -V
16-
humility 0.12.11
16+
humility 0.12.12
1717

1818
```
1919

@@ -28,7 +28,7 @@ For more information try --help
2828

2929
```
3030
$ humility -c apx432 -V
31-
humility 0.12.11
31+
humility 0.12.12
3232

3333
```
3434

humility-bin/tests/cmd/version.trycmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ Long version flag:
22

33
```
44
$ humility --version
5-
humility 0.12.11
5+
humility 0.12.12
66

77
```
88

99
Short version flag:
1010

1111
```
1212
$ humility -V
13-
humility 0.12.11
13+
humility 0.12.12
1414

1515
```

humility-probes-core/src/probe_rs.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ impl Core for ProbeCore {
294294
fn reset(&mut self) -> Result<()> {
295295
let mut core = self.session.core(0)?;
296296
core.reset()?;
297+
self.halted = false;
297298
Ok(())
298299
}
299300

0 commit comments

Comments
 (0)