mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 00:05:33 +03:00
CJMCU - Allow various features to be compiled out to support.
This commit is contained in:
parent
fc93be394f
commit
125f6d1450
16 changed files with 84 additions and 9 deletions
|
@ -232,13 +232,17 @@ void init(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef LED_STRIP
|
||||
if (feature(FEATURE_LED_STRIP)) {
|
||||
ws2811LedStripInit();
|
||||
ledStripInit();
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef TELEMETRY
|
||||
if (feature(FEATURE_TELEMETRY))
|
||||
initTelemetry();
|
||||
#endif
|
||||
|
||||
previousTime = micros();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue