Merge pull request #787 from gaelj/BF_Fix_Ledstrip_Speed

Fix ledstrip slow update speed
This commit is contained in:
J Blackman 2016-07-19 03:23:33 +10:00 committed by GitHub
commit 4c3d098531
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ cfTask_t cfTasks[TASK_COUNT] = {
[TASK_LEDSTRIP] = {
.taskName = "LEDSTRIP",
.taskFunc = taskLedStrip,
.desiredPeriod = 1000000 / 10, // 10 Hz
.desiredPeriod = 1000000 / 100, // 100 Hz
.staticPriority = TASK_PRIORITY_LOW,
},
#endif