1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

Convert to USE_ scheme

This commit is contained in:
jflyper 2018-02-23 08:43:58 +09:00
parent 177472b4fc
commit ea0db878bf
104 changed files with 217 additions and 131 deletions

View file

@ -255,7 +255,7 @@ void fcTasksInit(void)
setTaskEnabled(TASK_DISPATCH, dispatchIsEnabled());
#ifdef BEEPER
#ifdef USE_BEEPER
setTaskEnabled(TASK_BEEPER, true);
#endif
#ifdef USE_GPS
@ -437,7 +437,7 @@ cfTask_t cfTasks[TASK_COUNT] = {
.staticPriority = TASK_PRIORITY_HIGH,
},
#ifdef BEEPER
#ifdef USE_BEEPER
[TASK_BEEPER] = {
.taskName = "BEEPER",
.taskFunc = beeperUpdate,