Skip to content

Commit

Permalink
fix: Fix rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Nov 22, 2023
1 parent 7251cf6 commit 515707b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion cargo-espflash/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,6 @@ fn save_image(args: SaveImageArgs) -> Result<()> {
flash_data,
args.save_image_args.merge,
args.save_image_args.skip_padding,
args.save_image_args.skip_padding,
)?;

Ok(())
Expand Down
1 change: 1 addition & 0 deletions espflash/src/bin/espflash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ fn flash(args: FlashArgs, config: &Config) -> Result<()> {
let flash_data = FlashData::new(
bootloader,
partition_table,
args.flash_args.partition_table_offset,
args.flash_args.format,
args.flash_args.target_app_partition,
flash_settings,
Expand Down
1 change: 1 addition & 0 deletions espflash/src/flasher/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ impl FlashData {
pub fn new(
bootloader: Option<&Path>,
partition_table: Option<&Path>,
partition_table_offset: Option<u32>,
image_format: Option<ImageFormatKind>,
target_app_partition: Option<String>,
flash_settings: FlashSettings,
Expand Down

0 comments on commit 515707b

Please sign in to comment.