mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 08:15:17 +03:00
Cosmetic changes (thanks to Bertrand's review)
This commit is contained in:
parent
e9f8b14f8b
commit
e55b7504c3
3 changed files with 24 additions and 24 deletions
|
@ -288,11 +288,10 @@ void menusTask(void * pdata)
|
|||
perMainArm();
|
||||
// TODO remove completely massstorage from sky9x firmware
|
||||
U32 runtime = (U32)(CoGetOSTime() - start);
|
||||
if (runtime >= MENU_TASK_PERIOD_TICKS) {
|
||||
//no delay
|
||||
}
|
||||
else {
|
||||
CoTickDelay(MENU_TASK_PERIOD_TICKS - runtime); // 5*2ms for now
|
||||
// deduct the thread run-time from the wait, if run-time was more than
|
||||
// desired period, then skip the wait all together
|
||||
if (runtime < MENU_TASK_PERIOD_TICKS) {
|
||||
CoTickDelay(MENU_TASK_PERIOD_TICKS - runtime);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue