1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

Set back LED strip update speed to 100Hz

This commit is contained in:
gaelj 2016-07-18 19:16:15 +02:00
parent 474fb0aaa3
commit 2e1766fbb9

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