AP_Vehicle: EFI increase loop rate to 50Hz

This commit is contained in:
Joshua Henderson 2022-08-28 17:19:26 -04:00 committed by Randy Mackay
parent 7cacb7972f
commit 0feea8e8f8
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ const AP_Scheduler::Task AP_Vehicle::scheduler_tasks[] = {
SCHED_TASK_CLASS(AP_AIS, &vehicle.ais, update, 5, 100, 249),
#endif
#if HAL_EFI_ENABLED
SCHED_TASK_CLASS(AP_EFI, &vehicle.efi, update, 10, 200, 250),
SCHED_TASK_CLASS(AP_EFI, &vehicle.efi, update, 50, 200, 250),
#endif
SCHED_TASK(update_arming, 1, 50, 253),
};