Skip to content

Commit

Permalink
Merge branch 'fix/fix_md5_timeouts' into 'master'
Browse files Browse the repository at this point in the history
fix: Fix md5 timeout values

Closes ESF-105

See merge request espressif/esp-serial-flasher!93
  • Loading branch information
DNedic committed Dec 19, 2023
2 parents 85063f7 + 0119f12 commit 105279c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.commitizen]
version = "1.0.0"
version = "1.0.1"
update_changelog_on_bump = true
version_scheme = "semver"
tag_format = "v$version"
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v1.0.1 (2023-12-19)

### Bug Fixes

- Fix md5 timeout values
- **ci**: Add more compiler warnings for the flasher in the examples

## v1.0.0 (2023-12-10)

- Initial release
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "1.0.0"
version: "1.0.1"
description: Serial flasher component provides portable library for flashing or loading ram loadble app to Espressif SoCs from other host microcontroller
url: https://github.com/espressif/esp-serial-flasher
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion src/esp_loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static target_chip_t s_target = ESP_UNKNOWN_CHIP;

#if MD5_ENABLED

static const uint32_t MD5_TIMEOUT_PER_MB = 800;
static const uint32_t MD5_TIMEOUT_PER_MB = 8000;
static struct MD5Context s_md5_context;
static uint32_t s_start_address;
static uint32_t s_image_size;
Expand Down

0 comments on commit 105279c

Please sign in to comment.