Renamed 'fcTasksInit' to 'tasksInit'. (#9070)

Renamed 'fcTasksInit' to 'tasksInit'.
This commit is contained in:
Michael Keller 2019-10-22 00:09:08 +13:00 committed by GitHub
commit cd8c2c8edc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -955,7 +955,7 @@ void init(void)
setArmingDisabled(ARMING_DISABLED_BOOT_GRACE_TIME);
fcTasksInit();
tasksInit();
systemState |= SYSTEM_STATE_READY;
}

View File

@ -223,7 +223,7 @@ static void taskCameraControl(uint32_t currentTime)
}
#endif
void fcTasksInit(void)
void tasksInit(void)
{
schedulerInit();

View File

@ -22,4 +22,4 @@
#define LOOPTIME_SUSPEND_TIME 3 // Prevent too long busy wait times
void fcTasksInit(void);
void tasksInit(void);