mirror of
https://github.com/opentx/opentx.git
synced 2025-07-25 17:25:13 +03:00
Make companion9x compile with recent changes
This commit is contained in:
parent
0a3f3d6c6b
commit
d970ddc9b4
1 changed files with 1 additions and 1 deletions
|
@ -647,7 +647,7 @@ void incRotaryEncoder(uint8_t idx, int8_t inc)
|
||||||
{
|
{
|
||||||
g_rotenc[idx] += inc;
|
g_rotenc[idx] += inc;
|
||||||
int16_t *value = &(phaseaddress(getRotaryEncoderFlightPhase(idx))->rotaryEncoders[idx]);
|
int16_t *value = &(phaseaddress(getRotaryEncoderFlightPhase(idx))->rotaryEncoders[idx]);
|
||||||
*value = limit((int16_t)-1024, *value + (inc * 8), (int16_t)+1024);
|
*value = limit((int16_t)-1024, (int16_t)(*value + (inc * 8)), (int16_t)+1024);
|
||||||
eeDirty(EE_MODEL);
|
eeDirty(EE_MODEL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue