Skip to content

Commit

Permalink
Change flashing message to match LED behavior (#2130)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotherNgineer committed Apr 29, 2024
1 parent f6a2d21 commit e43f7a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmware/application/apps/ui_flash_utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e43f7a7

Please sign in to comment.