AP_IOMCU: use a higher thread priority

this ensures PWM output gets out as fast as possible
This commit is contained in:
Andrew Tridgell 2018-04-03 18:14:32 +10:00
parent 84d76cf915
commit 4a7a66cc16

View File

@ -109,7 +109,7 @@ void AP_IOMCU::init(void)
thread_ctx = chThdCreateFromHeap(NULL,
THD_WORKING_AREA_SIZE(1024),
"IOMCU",
180,
183,
thread_start,
this);
if (thread_ctx == nullptr) {