File tree 2 files changed +17
-2
lines changed
espflash/src/targets/flash_target 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ Unreleased]
9
+
10
+ ### Added
11
+
12
+ ### Fixed
13
+
14
+ ### Changed
15
+
16
+ ### Removed
17
+
8
18
## [ 3.0.0-rc.1] - 2024-02-16
9
19
10
20
### Added
@@ -47,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
47
57
48
58
### Removed
49
59
60
+ - Remove support for Cargo metadata configuration (#551 )
50
61
- Remove support for the ESP8266 (#576 )
51
62
- Remove the direct boot image format (#577 )
52
63
- Remove support for Raspberry Pi's internal UART peripherals (#585 )
@@ -204,6 +215,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
204
215
205
216
## [ 1.0.0] - 2021-09-21
206
217
218
+ [ Unreleased ] : https://github.com/esp-rs/espflash/compare/v3.0.0-rc.1...HEAD
207
219
[ 3.0.0-rc.1 ] : https://github.com/esp-rs/espflash/compare/v2.1.0...v3.0.0-rc.1
208
220
[ 2.1.0 ] : https://github.com/esp-rs/espflash/compare/v2.0.1...v2.1.0
209
221
[ 2.0.1 ] : https://github.com/esp-rs/espflash/compare/v2.0.0...v2.0.1
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use flate2::{
4
4
write:: { ZlibDecoder , ZlibEncoder } ,
5
5
Compression ,
6
6
} ;
7
- use log:: debug ;
7
+ use log:: info ;
8
8
use md5:: { Digest , Md5 } ;
9
9
10
10
#[ cfg( feature = "serialport" ) ]
@@ -155,7 +155,10 @@ impl FlashTarget for Esp32Target {
155
155
} ) ?;
156
156
157
157
if checksum_md5. as_slice ( ) == flash_checksum_md5. to_be_bytes ( ) {
158
- debug ! ( "Skipping segment at address {:x}" , addr) ;
158
+ info ! (
159
+ "Segment at address '0x{:x}' has not changed, skipping write" ,
160
+ addr
161
+ ) ;
159
162
return Ok ( ( ) ) ;
160
163
}
161
164
}
You can’t perform that action at this time.
0 commit comments