/* * Copyright (C) OpenTX * * Based on code named * th9x - http://code.google.com/p/th9x * er9x - http://code.google.com/p/er9x * gruvin9x - http://code.google.com/p/gruvin9x * * License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include "opentx.h" OS_TID menusTaskId; // menus stack must be aligned to 8 bytes otherwise printf for %f does not work! TaskStack _ALIGNED(8) menusStack; OS_TID mixerTaskId; TaskStack mixerStack; OS_TID audioTaskId; TaskStack audioStack; #if defined(BLUETOOTH) OS_TID btTaskId; TaskStack bluetoothStack; #endif OS_MutexID audioMutex; OS_MutexID mixerMutex; enum TaskIndex { MENU_TASK_INDEX, MIXER_TASK_INDEX, AUDIO_TASK_INDEX, CLI_TASK_INDEX, BLUETOOTH_TASK_INDEX, TASK_INDEX_COUNT, MAIN_TASK_INDEX = 255 }; template void TaskStack::paint() { for (uint32_t i=0; i maxMixerDuration) maxMixerDuration = t0 ; } CoTickDelay(1); // 2ms for now } } #define MENU_TASK_PERIOD_TICKS 10 // 20ms void menusTask(void * pdata) { opentxInit(); #if defined(PCBTARANIS) && defined(REV9E) while (1) { uint32_t pwr_check = pwrCheck(); if (pwr_check == e_power_off) { break; } else if (pwr_check == e_power_press) { continue; } #else while (pwrCheck() != e_power_off) { #endif U64 start = CoGetOSTime(); perMain(); // TODO remove completely massstorage from sky9x firmware U32 runtime = (U32)(CoGetOSTime() - start); // 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); } } #if defined(PCBTARANIS) && defined(REV9E) toplcdOff(); #endif BACKLIGHT_OFF(); #if defined(COLORLCD) #elif defined(PCBTARANIS) displaySleepBitmap(); #else lcdClear(); displayPopup(STR_SHUTDOWN); #endif opentxClose(); boardOff(); // Only turn power off if necessary } extern void audioTask(void* pdata); void tasksStart() { CoInitOS(); #if defined(CLI) cliStart(); #endif #if defined(BLUETOOTH) btTaskId = CoCreateTask(btTask, NULL, 15, &bluetoothStack.stack[BLUETOOTH_STACK_SIZE-1], BLUETOOTH_STACK_SIZE); #endif mixerTaskId = CoCreateTask(mixerTask, NULL, 5, &mixerStack.stack[MIXER_STACK_SIZE-1], MIXER_STACK_SIZE); menusTaskId = CoCreateTask(menusTask, NULL, 10, &menusStack.stack[MENUS_STACK_SIZE-1], MENUS_STACK_SIZE); audioTaskId = CoCreateTask(audioTask, NULL, 7, &audioStack.stack[AUDIO_STACK_SIZE-1], AUDIO_STACK_SIZE); #if !defined(SIMU) audioMutex = CoCreateMutex(); mixerMutex = CoCreateMutex(); #endif CoStartOS(); } #endif // !defined(SIMU)