1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 22:35:23 +03:00

Merge pull request #6977 from mikeller/remove_skip_defines

Converted 'SKIP_' defines to 'USE_'.
This commit is contained in:
Michael Keller 2018-10-29 07:37:10 +13:00 committed by GitHub
commit 71c563fdb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 31 additions and 31 deletions

View file

@ -1070,7 +1070,7 @@ const clivalue_t valueTable[] = {
#endif
// PG_SYSTEM_CONFIG
#ifndef SKIP_TASK_STATISTICS
#if defined(USE_TASK_STATISTICS)
{ "task_statistics", VAR_INT8 | MASTER_VALUE | MODE_LOOKUP, .config.lookup = { TABLE_OFF_ON }, PG_SYSTEM_CONFIG, offsetof(systemConfig_t, task_statistics) },
#endif
{ "debug_mode", VAR_UINT8 | MASTER_VALUE | MODE_LOOKUP, .config.lookup = { TABLE_DEBUG }, PG_SYSTEM_CONFIG, offsetof(systemConfig_t, debug_mode) },