From d2580ea834618fb06f424127aa5baff91db373f7 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Mon, 22 Jan 2024 12:13:47 +0100 Subject: [PATCH] docs: Update changelog --- CHANGELOG.md | 1 + espflash/src/command.rs | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1588956..73fc2e65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add support for 26 MHz bootloader for ESP32 and ESP32-C2 (#553) - Add CI check to verify that CHANGELOG is updated (#560) - Add `--before` and `--after` reset arguments (#561) +- Add `read-flash` command (#558) ### Fixed diff --git a/espflash/src/command.rs b/espflash/src/command.rs index 9b173d3c..0ae2f923 100644 --- a/espflash/src/command.rs +++ b/espflash/src/command.rs @@ -420,9 +420,6 @@ impl<'a> Command<'a> { Command::FlashDetect => { write_basic(writer, &[], 0)?; } - Command::RunUserCode => { - write_basic(writer, &[], 0)?; - } }; Ok(()) }