1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-19 14:25:11 +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

@ -1990,7 +1990,8 @@ void luaRunNonGuiScripts()
lastRunTime = get_tmr10ms() - t0; lastRunTime = get_tmr10ms() - t0;
} }
bool luaRunGuiScripts(uint8_t evt){ bool luaRunGuiScripts(uint8_t evt)
{
//execute one cycle of Lua scripts that use LCD //execute one cycle of Lua scripts that use LCD
//either stand-alone or other (telemetry scripts) //either stand-alone or other (telemetry scripts)

View file

@ -288,11 +288,10 @@ void menusTask(void * pdata)
perMainArm(); perMainArm();
// TODO remove completely massstorage from sky9x firmware // TODO remove completely massstorage from sky9x firmware
U32 runtime = (U32)(CoGetOSTime() - start); U32 runtime = (U32)(CoGetOSTime() - start);
if (runtime >= MENU_TASK_PERIOD_TICKS) { // deduct the thread run-time from the wait, if run-time was more than
//no delay // desired period, then skip the wait all together
} if (runtime < MENU_TASK_PERIOD_TICKS) {
else { CoTickDelay(MENU_TASK_PERIOD_TICKS - runtime);
CoTickDelay(MENU_TASK_PERIOD_TICKS - runtime); // 5*2ms for now
} }
} }