1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Cloud build option for 64 leds (#12064)

Build option for 64 leds
This commit is contained in:
Ivan Efimov 2022-12-23 17:02:21 -06:00 committed by GitHub
parent e9678d8380
commit 7b70abd118
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 2 deletions

View file

@ -43,6 +43,14 @@
#define USE_SERVOS
#define USE_TRANSPONDER
#ifndef LED_MAX_STRIP_LENGTH
#ifdef USE_LEDSTRIP_64
#define LED_MAX_STRIP_LENGTH 64
#else
#define LED_MAX_STRIP_LENGTH 32
#endif
#endif // #ifndef LED_MAX_STRIP_LENGTH
typedef enum
{
Mode_TEST = 0x0,