Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Feb 2, 2021
1 parent e740a2c commit 1a83c3d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/eez/firmware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,10 @@ void boot() {
psu::event_queue::pushEvent(psu::event_queue::EVENT_ERROR_WATCHDOG_RESET);
}
#endif

if (g_numMasterErrors > 0) {
ErrorTrace("MCU errors: %s\n", g_masterErrorMessage);
}
}

bool testMaster() {
Expand Down Expand Up @@ -360,7 +364,6 @@ bool testMaster() {
}

if (g_numMasterErrors > 0) {
ErrorTrace("MCU errors: %s\n", g_masterErrorMessage);
g_masterTestResult = TEST_FAILED;
return false;
}
Expand Down

0 comments on commit 1a83c3d

Please sign in to comment.