mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 12:25:20 +03:00
Merge pull request #5871 from wind0r/fix_static_initialization
remove unneeded static initialization
This commit is contained in:
commit
690d2d6ca7
1 changed files with 2 additions and 2 deletions
|
@ -181,8 +181,8 @@ static void checkForThrottleErrorResetState(uint16_t rxRefreshRate)
|
|||
|
||||
FAST_CODE NOINLINE void processRcCommand(void)
|
||||
{
|
||||
static float rcCommandInterp[4] = { 0, 0, 0, 0 };
|
||||
static float rcStepSize[4] = { 0, 0, 0, 0 };
|
||||
static float rcCommandInterp[4];
|
||||
static float rcStepSize[4];
|
||||
static int16_t rcInterpolationStepCount;
|
||||
|
||||
if (isRXDataNew && isAntiGravityModeActive()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue