Merge pull request #787 from gaelj/BF_Fix_Ledstrip_Speed
Fix ledstrip slow update speed
This commit is contained in:
commit
4c3d098531
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue