mirror of
https://github.com/opentx/opentx.git
synced 2025-07-26 01:35:21 +03:00
[simu] Refactor simu startup and shutdown handling (for 2.3 branch):
* Use pwrCheck() as primary control point for shutdown, centralizes thread control in simpgmspace module; * Remove main_thread_running in favor of separate variables for startup mode and shutdown flag; * Don't start a thread for ARM startup, just run simuMain() directly (the thread just exits anyway); * Refactor SIMU_SLEEP() macro, and remove all unnecessary uses of it, also remove SIMU_SLEEP_NORET; * Add startType param to opentxStart() to control splash and startup checks; * Fixes backlight never turning off in simulator with "SWITCH" power button type (pwrPressed() was always true); * Fixes simu shutdown when model checklist is displayed at startup; * Adds stubs to possibly simulate a "soft" power button in the future.
This commit is contained in:
parent
942ae1847d
commit
a2006940db
12 changed files with 97 additions and 70 deletions
|
@ -188,12 +188,7 @@ bool clearKeyEvents()
|
|||
#endif
|
||||
|
||||
while (keyDown()) {
|
||||
|
||||
#if defined(SIMU)
|
||||
SIMU_SLEEP_NORET(1/*ms*/);
|
||||
#else
|
||||
wdt_reset();
|
||||
#endif
|
||||
|
||||
#if !defined(BOOT)
|
||||
if ((get_tmr10ms() - start) >= 300) { // wait no more than 3 seconds
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue