mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-17 05:15:25 +03:00
Converted 'SKIP_' defines to 'USE_'.
This commit is contained in:
parent
05f935d38e
commit
a03f30efa0
13 changed files with 30 additions and 31 deletions
|
@ -526,7 +526,7 @@ static void showSensorsPage(void)
|
|||
|
||||
}
|
||||
|
||||
#ifndef SKIP_TASK_STATISTICS
|
||||
#if defined(USE_TASK_STATISTICS)
|
||||
static void showTasksPage(void)
|
||||
{
|
||||
uint8_t rowIndex = PAGE_TITLE_LINE_COUNT;
|
||||
|
@ -576,7 +576,7 @@ static const pageEntry_t pages[PAGE_COUNT] = {
|
|||
{ PAGE_RX, "RX", showRxPage, PAGE_FLAGS_NONE },
|
||||
{ PAGE_BATTERY, "BATTERY", showBatteryPage, PAGE_FLAGS_NONE },
|
||||
{ PAGE_SENSORS, "SENSORS", showSensorsPage, PAGE_FLAGS_NONE },
|
||||
#ifndef SKIP_TASK_STATISTICS
|
||||
#if defined(USE_TASK_STATISTICS)
|
||||
{ PAGE_TASKS, "TASKS", showTasksPage, PAGE_FLAGS_NONE },
|
||||
#endif
|
||||
#ifdef ENABLE_DEBUG_DASHBOARD_PAGE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue