Avoid static use. Causes problems when the amount of LEDs in the ring
is odd.
This commit is contained in:
parent
e7302a9e10
commit
ae752217c6
|
@ -751,7 +751,7 @@ int applyLedThrustRingLayer(void)
|
||||||
int returnedValue = 1;
|
int returnedValue = 1;
|
||||||
int throttleScaled = scaleRange(rcData[THROTTLE], PWM_RANGE_MIN, PWM_RANGE_MAX, 1, 10);
|
int throttleScaled = scaleRange(rcData[THROTTLE], PWM_RANGE_MIN, PWM_RANGE_MAX, 1, 10);
|
||||||
static uint8_t rotationPhase = 0;
|
static uint8_t rotationPhase = 0;
|
||||||
static bool nextLedOn = false;
|
bool nextLedOn = false;
|
||||||
hsvColor_t ringColor;
|
hsvColor_t ringColor;
|
||||||
const ledConfig_t *ledConfig;
|
const ledConfig_t *ledConfig;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue