From e43f7a798096504b66c6cf5bbed759ee04b557ee Mon Sep 17 00:00:00 2001 From: Mark Thompson <129641948+NotherNgineer@users.noreply.github.com> Date: Mon, 29 Apr 2024 15:29:46 -0500 Subject: [PATCH] Change flashing message to match LED behavior (#2130) --- firmware/application/apps/ui_flash_utility.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/application/apps/ui_flash_utility.cpp b/firmware/application/apps/ui_flash_utility.cpp index dafc0f5b2..bef978271 100644 --- a/firmware/application/apps/ui_flash_utility.cpp +++ b/firmware/application/apps/ui_flash_utility.cpp @@ -163,8 +163,8 @@ bool FlashUtilityView::flash_firmware(std::filesystem::path::string_type path) { ui::Color::black()); painter.draw_string({12, 24}, this->nav_.style(), "This will take 15 seconds."); - painter.draw_string({12, 64}, this->nav_.style(), "Please wait while LEDs RX"); - painter.draw_string({12, 84}, this->nav_.style(), "and TX are flashing."); + painter.draw_string({12, 64}, this->nav_.style(), "Please wait while LED RX"); + painter.draw_string({12, 84}, this->nav_.style(), "is on and TX is flashing."); painter.draw_string({12, 124}, this->nav_.style(), "Device will then restart."); std::memcpy(&shared_memory.bb_data.data[0], path.c_str(), (path.length() + 1) * 2);