1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00

motorCount needs to be global

This commit is contained in:
Joel Fuster 2015-01-10 14:33:52 -05:00
parent 09862aed78
commit f5afb74126

View file

@ -59,7 +59,7 @@
extern int16_t debug[4];
#ifndef UNIT_TEST
static uint8_t motorCount = 0;
uint8_t motorCount = 0;
static int useServo;
static uint8_t servoCount;
#endif