1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-16 12:55:12 +03:00

Cosmetics

This commit is contained in:
Bertrand Songis 2019-06-01 15:51:50 +02:00
parent 882e9638cc
commit 34cfcc3fe4
No known key found for this signature in database
GPG key ID: F189F79290FEC50F
8 changed files with 18 additions and 20 deletions

View file

@ -748,8 +748,6 @@ extern int32_t chans[MAX_OUTPUT_CHANNELS];
extern int16_t ex_chans[MAX_OUTPUT_CHANNELS]; // Outputs (before LIMITS) of the last perMain
extern int16_t channelOutputs[MAX_OUTPUT_CHANNELS];
#define NUM_INPUTS (MAX_INPUTS)
int expo(int x, int k);
inline void getMixSrcRange(const int source, int16_t & valMin, int16_t & valMax, LcdFlags * flags = 0)
@ -865,9 +863,9 @@ LogicalSwitchData * lswAddress(uint8_t idx);
// static variables used in evalFlightModeMixes - moved here so they don't interfere with the stack
// It's also easier to initialize them here.
extern int8_t virtualInputsTrims[NUM_INPUTS];
extern int8_t virtualInputsTrims[MAX_INPUTS];
extern int16_t anas [NUM_INPUTS];
extern int16_t anas [MAX_INPUTS];
extern int16_t trims[NUM_TRIMS];
extern BeepANACenter bpanaCenter;