spiFlash: cosmetic 'Read flash ' -> 'Reading' (#558)

This commit is contained in:
Gwenhael Goavec-Merou 2025-06-08 07:00:40 +02:00
parent 765ed526e3
commit 2e1c7e29a4
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ bool SPIFlash::verify(const int &base_addr, const uint8_t *data,
std::string verify_data;
verify_data.resize(rd_burst);
ProgressBar progress("Read flash ", len, 50, false);
ProgressBar progress("Reading", len, 50, false);
for (int i = 0; i < len; i += rd_burst) {
if (rd_burst + i > len)
rd_burst = len - i;