Skip to content

Commit

Permalink
Update dependencies except BDK
Browse files Browse the repository at this point in the history
Update all the dependencies with the exception of BDK due to a
regression in FW size (see PR TwentyTwoHW#1)
  • Loading branch information
afilini committed Mar 15, 2024
1 parent 47e90cf commit badb03b
Show file tree
Hide file tree
Showing 11 changed files with 255 additions and 191 deletions.
60 changes: 35 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This command should first compile the emulator, then the firmware, and then laun

The dependencies you'll need are:

* **nightly** `cargo` with both the native (local) and `thumbv7em-none-eabihf` targets installed
* `cargo` (ideally >= 1.76) with both the native (local) and `thumbv7em-none-eabihf` targets installed
* The C toolchain for ARM-v7 (`arm-none-eabi-*`)
* `qemu-system-arm` to emulate the firmware
* FLTK to run the emulator GUI
Expand Down
3 changes: 1 addition & 2 deletions emulator/src/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@ async fn run_script(
}

let actual_fb = emulator.display.to_rgb_output_image(&output_settings);
if actual_fb.as_image_buffer().as_raw().deref() == expected_fb.as_raw().deref()
{
if actual_fb.as_image_buffer().as_raw() == &expected_fb.as_raw().deref() {
break None;
}

Expand Down
Loading

0 comments on commit badb03b

Please sign in to comment.