Skip to content

Commit

Permalink
Sub: fix error in task scheduled rate
Browse files Browse the repository at this point in the history
  • Loading branch information
OXINARF authored and rmackay9 committed Dec 14, 2018
1 parent e6c30f6 commit 6f01073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArduSub/ArduSub.cpp
Expand Up @@ -40,7 +40,7 @@ const AP_Scheduler::Task Sub::scheduler_tasks[] = {
SCHED_TASK(one_hz_loop, 1, 100),
SCHED_TASK_CLASS(GCS, (GCS*)&sub._gcs, update_receive, 400, 180),
SCHED_TASK(gcs_send_heartbeat, 1, 110),
SCHED_TASK_CLASS(GCS, (GCS*)&sub._gcs, update_send, 4000, 550),
SCHED_TASK_CLASS(GCS, (GCS*)&sub._gcs, update_send, 400, 550),
#if MOUNT == ENABLED
SCHED_TASK_CLASS(AP_Mount, &sub.camera_mount, update, 50, 75),
#endif
Expand Down

0 comments on commit 6f01073

Please sign in to comment.