mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 17:25:20 +03:00
Remove old style definitions
This commit is contained in:
parent
b54174c77e
commit
ddf1d46549
57 changed files with 119 additions and 117 deletions
|
@ -746,7 +746,7 @@ uint8_t calculateThrottlePercentAbs(void)
|
|||
|
||||
static bool airmodeIsActivated;
|
||||
|
||||
bool isAirmodeActivated()
|
||||
bool isAirmodeActivated(void)
|
||||
{
|
||||
return airmodeIsActivated;
|
||||
}
|
||||
|
@ -1314,12 +1314,12 @@ timeUs_t getLastDisarmTimeUs(void)
|
|||
return lastDisarmTimeUs;
|
||||
}
|
||||
|
||||
bool isTryingToArm()
|
||||
bool isTryingToArm(void)
|
||||
{
|
||||
return (tryingToArm != ARMING_DELAYED_DISARMED);
|
||||
}
|
||||
|
||||
void resetTryingToArm()
|
||||
void resetTryingToArm(void)
|
||||
{
|
||||
tryingToArm = ARMING_DELAYED_DISARMED;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue