1
0
Fork 0
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:
Damjan Adamic 2014-12-07 09:41:31 +01:00
parent e9f8b14f8b
commit e55b7504c3
3 changed files with 24 additions and 24 deletions

View file

@ -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);
}
}