Skip to content

Commit

Permalink
fix(color): unable to turn off radio if powered on with no SD card (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
philmoz authored and pfeerick committed Feb 12, 2025
1 parent bdea8e0 commit 34847c7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
18 changes: 9 additions & 9 deletions radio/src/edgetx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1370,6 +1370,15 @@ void edgeTxInit()
{
TRACE("edgeTxInit");

#if defined(COLORLCD)
// SD_CARD_PRESENT() does not work properly on most
// B&W targets, so that we need to delay the detection
// until the SD card is mounted (requires RTOS scheduler running)
if (!SD_CARD_PRESENT() && !UNEXPECTED_SHUTDOWN()) {
runFatalErrorScreen(STR_NO_SDCARD);
}
#endif

// Show splash screen (color LCD)
if (!(startOptions & OPENTX_START_NO_SPLASH))
startSplash();
Expand Down Expand Up @@ -1623,15 +1632,6 @@ int main()
}
#endif

#if defined(COLORLCD)
// SD_CARD_PRESENT() does not work properly on most
// B&W targets, so that we need to delay the detection
// until the SD card is mounted (requires RTOS scheduler running)
if (!SD_CARD_PRESENT() && !UNEXPECTED_SHUTDOWN()) {
runFatalErrorScreen(STR_NO_SDCARD);
}
#endif

tasksStart();
}

Expand Down
7 changes: 7 additions & 0 deletions radio/src/gui/colorlcd/startup_shutdown.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,13 @@ void runFatalErrorScreen(const char* message)
{
lcdInitDisplayDriver();

drawFatalErrorScreen(message);

// On startup wait for power button to be released
while (pwrPressed()) {
WDG_RESET();
}

while (true) {
drawFatalErrorScreen(message);
WDG_RESET();
Expand Down

0 comments on commit 34847c7

Please sign in to comment.