Skip to content

Commit 88d746b

Browse files
authored
Merge pull request #10250 from iNavFlight/mmosca-sbus2-telemetry
Lower sbus2 telemetry task priority
2 parents d9f6db1 + 734050e commit 88d746b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/fc/fc_tasks.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -733,10 +733,10 @@ cfTask_t cfTasks[TASK_COUNT] = {
733733

734734
#if defined(USE_TELEMETRY) && defined(USE_TELEMETRY_SBUS2)
735735
[TASK_TELEMETRY_SBUS2] = {
736-
.taskName = "SBUS2_TELEMETRY",
736+
.taskName = "SBUS2 TLM",
737737
.taskFunc = taskSendSbus2Telemetry,
738738
.desiredPeriod = TASK_PERIOD_US(125), // 8kHz 2ms dead time + 650us window / sensor.
739-
.staticPriority = TASK_PRIORITY_REALTIME, // timing is critical. Ideally, should be a timer interrupt triggered by sbus packet
739+
.staticPriority = TASK_PRIORITY_LOW, // timing is critical. Ideally, should be a timer interrupt triggered by sbus packet
740740
},
741741
#endif
742742

0 commit comments

Comments
 (0)