mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 16:25:16 +03:00
perMainArm() renamed to perMain()
This commit is contained in:
parent
afedd86fae
commit
f8203b72f7
4 changed files with 13 additions and 17 deletions
|
@ -97,7 +97,7 @@ void checkEeprom()
|
|||
}
|
||||
}
|
||||
|
||||
void perMainArm()
|
||||
void perMain()
|
||||
{
|
||||
#if defined(PCBSKY9X) && !defined(REVA)
|
||||
calcConsumption();
|
||||
|
|
|
@ -727,11 +727,9 @@ void evalMixes(uint8_t tick10ms);
|
|||
void doMixerCalculations();
|
||||
|
||||
#if defined(CPUARM)
|
||||
void perMainArm();
|
||||
void checkTrims();
|
||||
#else
|
||||
void perMain();
|
||||
void checkTrims();
|
||||
#endif
|
||||
void perMain();
|
||||
NOINLINE void per10ms();
|
||||
|
||||
getvalue_t getValue(mixsrc_t i);
|
||||
|
@ -747,15 +745,15 @@ void logicalSwitchesTimerTick();
|
|||
void logicalSwitchesReset();
|
||||
|
||||
#if defined(CPUARM)
|
||||
void evalLogicalSwitches(bool isCurrentPhase=true);
|
||||
void logicalSwitchesCopyState(uint8_t src, uint8_t dst);
|
||||
#define LS_RECURSIVE_EVALUATION_RESET()
|
||||
void evalLogicalSwitches(bool isCurrentPhase=true);
|
||||
void logicalSwitchesCopyState(uint8_t src, uint8_t dst);
|
||||
#define LS_RECURSIVE_EVALUATION_RESET()
|
||||
#else
|
||||
#define evalLogicalSwitches(xxx)
|
||||
#define GETSWITCH_RECURSIVE_TYPE uint16_t
|
||||
extern volatile GETSWITCH_RECURSIVE_TYPE s_last_switch_used;
|
||||
extern volatile GETSWITCH_RECURSIVE_TYPE s_last_switch_value;
|
||||
#define LS_RECURSIVE_EVALUATION_RESET() s_last_switch_used = 0
|
||||
#define evalLogicalSwitches(xxx)
|
||||
#define GETSWITCH_RECURSIVE_TYPE uint16_t
|
||||
extern volatile GETSWITCH_RECURSIVE_TYPE s_last_switch_used;
|
||||
extern volatile GETSWITCH_RECURSIVE_TYPE s_last_switch_value;
|
||||
#define LS_RECURSIVE_EVALUATION_RESET() s_last_switch_used = 0
|
||||
#endif
|
||||
|
||||
#if defined(PCBTARANIS)
|
||||
|
|
|
@ -342,10 +342,8 @@ void *main_thread(void *)
|
|||
#if defined(CPUARM)
|
||||
doMixerCalculations();
|
||||
checkTrims();
|
||||
perMainArm();
|
||||
#else
|
||||
perMain();
|
||||
#endif
|
||||
perMain();
|
||||
sleep(10/*ms*/);
|
||||
}
|
||||
|
||||
|
|
|
@ -160,7 +160,7 @@ void menusTask(void * pdata)
|
|||
|
||||
while (pwrCheck() != e_power_off) {
|
||||
U64 start = CoGetOSTime();
|
||||
perMainArm();
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue