Skip to content

Commit 105279c

Browse files
committed
Merge branch 'fix/fix_md5_timeouts' into 'master'
fix: Fix md5 timeout values Closes ESF-105 See merge request espressif/esp-serial-flasher!93
2 parents 85063f7 + 0119f12 commit 105279c

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.cz.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.commitizen]
2-
version = "1.0.0"
2+
version = "1.0.1"
33
update_changelog_on_bump = true
44
version_scheme = "semver"
55
tag_format = "v$version"

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v1.0.1 (2023-12-19)
2+
3+
### Bug Fixes
4+
5+
- Fix md5 timeout values
6+
- **ci**: Add more compiler warnings for the flasher in the examples
7+
18
## v1.0.0 (2023-12-10)
29

310
- Initial release

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "1.0.0"
1+
version: "1.0.1"
22
description: Serial flasher component provides portable library for flashing or loading ram loadble app to Espressif SoCs from other host microcontroller
33
url: https://github.com/espressif/esp-serial-flasher
44
dependencies:

src/esp_loader.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static target_chip_t s_target = ESP_UNKNOWN_CHIP;
4646

4747
#if MD5_ENABLED
4848

49-
static const uint32_t MD5_TIMEOUT_PER_MB = 800;
49+
static const uint32_t MD5_TIMEOUT_PER_MB = 8000;
5050
static struct MD5Context s_md5_context;
5151
static uint32_t s_start_address;
5252
static uint32_t s_image_size;

0 commit comments

Comments
 (0)