Skip to content

Commit d336c21

Browse files
authored
Bump slot size, update version (#232)
hubris#782 bumps slot size to 2 MiB per the RFD; this requires a longer timeout in Humility.
1 parent 1e7f421 commit d336c21

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name = "humility"
1717
#
1818
# Be sure to check in and push all of the files that change. Happy versioning!
1919
#
20-
version = "0.8.13"
20+
version = "0.8.14"
2121
authors = ["Bryan Cantrill <[email protected]>"]
2222
edition = "2018"
2323
license = "MPL-2.0"

cmd/auxflash/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const WRITE_CHUNK_SIZE: usize = 2048; // limited by HIFFY_DATA_SIZE
3131
struct AuxFlashArgs {
3232
/// sets timeout
3333
#[clap(
34-
long, short = 'T', default_value = "5000", value_name = "timeout_ms",
34+
long, short = 'T', default_value = "15000", value_name = "timeout_ms",
3535
parse(try_from_str = parse_int::parse)
3636
)]
3737
timeout: u32,

cmd/flash/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ fn program_auxflash(
433433
data: &[u8],
434434
) -> Result<()> {
435435
let mut worker =
436-
humility_cmd_auxflash::AuxFlashHandler::new(hubris, core, 5000)?;
436+
humility_cmd_auxflash::AuxFlashHandler::new(hubris, core, 15_000)?;
437437

438438
// At this point, we've already rebooted into the new image.
439439
//

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.8.13
16+
humility 0.8.14
1717

1818
```
1919

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

2929
```
3030
$ humility -c apx432 -V
31-
humility 0.8.13
31+
humility 0.8.14
3232

3333
```
3434

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.8.13
5+
humility 0.8.14
66

77
```
88

99
Short version flag:
1010

1111
```
1212
$ humility -V
13-
humility 0.8.13
13+
humility 0.8.14
1414

1515
```

0 commit comments

Comments
 (0)