Increased GPS task frequency to 100Hz to prevent serial buffer overflows.

This commit is contained in:
Michael Keller 2017-04-04 12:23:33 +12:00
parent a03bd7077e
commit 5ff8ae9628
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ cfTask_t cfTasks[TASK_COUNT] = {
[TASK_GPS] = {
.taskName = "GPS",
.taskFunc = gpsUpdate,
.desiredPeriod = TASK_PERIOD_HZ(10), // GPS usually don't go raster than 10Hz
.desiredPeriod = TASK_PERIOD_HZ(100), // Required to prevent buffer overruns if running at 115200 baud (115 bytes / period < 256 bytes buffer)
.staticPriority = TASK_PRIORITY_MEDIUM,
},
#endif