mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-20 06:45:16 +03:00
Preparation for conversion to parameter groups 14
This commit is contained in:
parent
743b3e37e3
commit
c67d6eb4f1
11 changed files with 174 additions and 66 deletions
|
@ -3674,6 +3674,9 @@ typedef struct {
|
|||
} cliResourceValue_t;
|
||||
|
||||
const cliResourceValue_t resourceTable[] = {
|
||||
#ifdef USE_PARAMETER_GROUPS
|
||||
{ OWNER_MOTOR, NULL, MAX_SUPPORTED_MOTORS },
|
||||
#else
|
||||
#ifdef BEEPER
|
||||
{ OWNER_BEEPER, &beeperDevConfig()->ioTag, 0 },
|
||||
#endif
|
||||
|
@ -3692,6 +3695,7 @@ const cliResourceValue_t resourceTable[] = {
|
|||
#ifdef LED_STRIP
|
||||
{ OWNER_LED_STRIP, &ledStripConfig()->ioTag, 0 },
|
||||
#endif
|
||||
#endif
|
||||
};
|
||||
|
||||
static void printResource(uint8_t dumpMask, const master_t *defaultConfig)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue